[FIX] web: Fix old versions of Webkit (such as ones used on iOS < 6 or PhantomJS...
authorChristophe Simonis <chs@openerp.com>
Wed, 20 Mar 2013 14:36:52 +0000 (15:36 +0100)
committerChristophe Simonis <chs@openerp.com>
Wed, 20 Mar 2013 14:36:52 +0000 (15:36 +0100)
which does not have Function.prototype.bind function

bzr revid: chs@openerp.com-20130320143652-xqglvte5kwvtwl5i

addons/web/__openerp__.py
addons/web/static/src/fixbind.js [new file with mode: 0644]

index 269aa13..937442d 100644 (file)
@@ -13,6 +13,7 @@ This module provides the core of the OpenERP Web Client.
     'auto_install': True,
     'post_load': 'wsgi_postload',
     'js' : [
+        "static/src/fixbind.js",
         "static/lib/datejs/globalization/en-US.js",
         "static/lib/datejs/core.js",
         "static/lib/datejs/parser.js",
diff --git a/addons/web/static/src/fixbind.js b/addons/web/static/src/fixbind.js
new file mode 100644 (file)
index 0000000..4a441ce
--- /dev/null
@@ -0,0 +1,28 @@
+// Fix old versions of Webkit (such as ones used on iOS < 6 or PhantomJS <= 1.7)
+// which does not have Function.prototype.bind function
+
+// Use moz polyfill:
+// https://developer.mozilla.org/en-US/docs/JavaScript/Reference/Global_Objects/Function/bind#Compatibility
+if (!Function.prototype.bind) {
+  Function.prototype.bind = function (oThis) {
+    if (typeof this !== "function") {
+      // closest thing possible to the ECMAScript 5 internal IsCallable function
+      throw new TypeError("Function.prototype.bind - what is trying to be bound is not callable");
+    }
+
+    var aArgs = Array.prototype.slice.call(arguments, 1),
+        fToBind = this,
+        fNOP = function () {},
+        fBound = function () {
+          return fToBind.apply(this instanceof fNOP && oThis
+                                 ? this
+                                 : oThis,
+                               aArgs.concat(Array.prototype.slice.call(arguments)));
+        };
+
+    fNOP.prototype = this.prototype;
+    fBound.prototype = new fNOP();
+
+    return fBound;
+  };
+}