author | hgs |
Fri, 17 Sep 2010 12:11:40 -0400 | |
changeset 12 | afcd8e6d025b |
parent 3 | 0954f5dd2cd0 |
permissions | -rw-r--r-- |
// Bind a function’s scope at definition instead of execution. Useful // for controlling the 'this' pointer in callbacks. Function.prototype.bind = function(obj) { var method = this, temp = function() { return method.apply(obj, arguments); }; return temp; } function createDelegate(object, method) { var shim = function() { method.apply(object, arguments); } return shim; }