From e4205ca66b304391cbaba61a20206ecdd50d7cf5 Mon Sep 17 00:00:00 2001 From: notmasteryet Date: Sun, 28 Aug 2011 15:15:16 -0500 Subject: [PATCH] rename to bound --- web/compatibility.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/web/compatibility.js b/web/compatibility.js index 878bf53ee..93d9d121b 100755 --- a/web/compatibility.js +++ b/web/compatibility.js @@ -148,11 +148,11 @@ Function.prototype.bind = function(obj) { var fn = this, headArgs = Array.prototype.slice.call(arguments, 1); - var binded = function() { + var bound = function() { var args = Array.prototype.concat.apply(headArgs, arguments); return fn.apply(obj, args); }; - return binded; + return bound; }; })();