Please upgrade here. These earlier versions are no longer being updated and have security issues.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
IE error in js/global.js

this is an FYI I guess 
(BTW .. I'm having great fun hacking about with Vanilla
)
line 141 of global.js produces an error in IE. It seems "item" is a reserved word in IE
The fix is simple:
change line 141 to look like this:
var item = targets[i];
This defines "item" as a variable, and overrides the default reserved word functionality
Paul.

(BTW .. I'm having great fun hacking about with Vanilla

line 141 of global.js produces an error in IE. It seems "item" is a reserved word in IE
The fix is simple:
change line 141 to look like this:
var item = targets[i];
This defines "item" as a variable, and overrides the default reserved word functionality
Paul.
0
Comments