Does anyone know a way to attach a JS callback to "this" without using "bind()"?
Based on Samsung specifications:
In 2013 with V8: everything functions as expected (refer to linked screenshot, too large to include here)
In 2012 with SquirrelFish: encountering exception - "bind()" is not recognized as a function (see linked screenshot, too large to include here)
This is the problematic code snippet:
var extJsCallBacks = [
function(){this._setupSystemInfo();}.bind(this),
function(){this._setupConfigInfo();}.bind(this),
function(){this._setupRepository();}.bind(this),
function(){this._setupContents();}.bind(this)
];
Any suggestions or hints on how to resolve this issue?