You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Inside the F2.js default download, EasyXDM is included. Inside the EasyXDM line (line 60), 2 references of '+ ++' are included. When run through some compression engines, this is compressed to '+++', which breaks some browsers like Firefox.
The fix is to convert the line just slightly to protect the second and third plus:
++i
to
(++i)
The text was updated successfully, but these errors were encountered:
Inside the F2.js default download, EasyXDM is included. Inside the EasyXDM line (line 60), 2 references of '+ ++' are included. When run through some compression engines, this is compressed to '+++', which breaks some browsers like Firefox.
The fix is to convert the line just slightly to protect the second and third plus:
to
The text was updated successfully, but these errors were encountered: