| author | hgs |
| Wed, 01 Sep 2010 13:56:21 -0400 | |
| changeset 11 | 786160610b4d |
| 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; }