From: Robert Konigsberg Date: Sun, 10 Feb 2013 16:43:22 +0000 (-0500) Subject: Remove naming of anoymous functions. Unnecessary and slightly wrong. X-Git-Tag: v1.0.0~76^2~2 X-Git-Url: https://adrianiainlam.tk/git/?a=commitdiff_plain;h=a537fd67fb9c4cf0ed381d781f9e569e79e5d503;p=dygraphs.git Remove naming of anoymous functions. Unnecessary and slightly wrong. --- diff --git a/dygraph-utils.js b/dygraph-utils.js index 0e8cf23..0554204 100644 --- a/dygraph-utils.js +++ b/dygraph-utils.js @@ -183,7 +183,7 @@ Dygraph.addEvent = function addEvent(elem, type, fn) { * on the event. The function takes one parameter: the event object. * @private */ -Dygraph.prototype.addEvent = function addEvent(elem, type, fn) { +Dygraph.prototype.addEvent = function(elem, type, fn) { Dygraph.addEvent(elem, type, fn); this.registeredEvents_.push({ elem : elem, type : type, fn : fn }); }; @@ -197,7 +197,7 @@ Dygraph.prototype.addEvent = function addEvent(elem, type, fn) { * on the event. The function takes one parameter: the event object. * @private */ -Dygraph.removeEvent = function addEvent(elem, type, fn) { +Dygraph.removeEvent = function(elem, type, fn) { if (elem.removeEventListener) { elem.removeEventListener(type, fn, false); } else {