Too fast on the trigger finger.
> evalScriptsGlobal: function() {
> return this.extractScripts().map(function(s){eval(s)}.bind(window));
> },
should rather be
evalScriptsGlobal: function() {
return this.extractScripts().map(function(s){eval.call(window, s)});
},
_______________________________________________
Rails-spinoffs mailing list
[email protected]
http://lists.rubyonrails.org/mailman/listinfo/rails-spinoffs
