You are reading a single comment by @WebReflection and its replies. Click here to read the full conversation.
  • As temporary work around on top of your file:

    Function.bind||(Function.prototype.bind=­function(c){var f=this,a=[].slice.call(arguments,1);retu­rn function(){a.push.apply(a,arguments);ret­urn f.apply(c,a)}});
    

    In case you don't care about handling extra arguments ...

    Function.bind||(Function.prototype.bind=­function(c,f){f=this;return function(){return f.apply(c,arguments)}});
    

    Until it's solved, of course

About