ginebra/chrome/js/Bind.js
branchGCC_SURGE
changeset 8 2e16851ffecd
parent 2 bf4420e9fa4d
parent 6 1c3b8676e58c
--- a/ginebra/chrome/js/Bind.js	Fri Jun 11 16:23:26 2010 +0100
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,18 +0,0 @@
-
-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;
-}