Skip to content

Commit

Permalink
Removing nonexistent arguments.
Browse files Browse the repository at this point in the history
  • Loading branch information
ljharb committed Feb 19, 2015
1 parent ebdae21 commit 4e3b1bc
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions es6-shim.js
Original file line number Diff line number Diff line change
Expand Up @@ -2526,10 +2526,10 @@
fontsize: function fontsize(size) { return ES.CreateHTML(this, 'font', 'size', size); },
italics: function italics() { return ES.CreateHTML(this, 'i', '', ''); },
link: function link(url) { return ES.CreateHTML(this, 'a', 'href', url); },
small: function small(url) { return ES.CreateHTML(this, 'small', '', ''); },
strike: function strike(url) { return ES.CreateHTML(this, 'strike', '', ''); },
sub: function sub(url) { return ES.CreateHTML(this, 'sub', '', ''); },
sup: function sub(url) { return ES.CreateHTML(this, 'sup', '', ''); }
small: function small() { return ES.CreateHTML(this, 'small', '', ''); },
strike: function strike() { return ES.CreateHTML(this, 'strike', '', ''); },
sub: function sub() { return ES.CreateHTML(this, 'sub', '', ''); },
sup: function sub() { return ES.CreateHTML(this, 'sup', '', ''); }
};
defineProperties(String.prototype, stringHTMLshims);
Object.keys(stringHTMLshims).forEach(function (key) {
Expand Down

0 comments on commit 4e3b1bc

Please sign in to comment.