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
It appears that the minified version of the plugin contains several short global variables, among them "io", which is also used globally by socket.io. Using both files at the same time causes a variable naming conflict and will ultimately cause socket.io to break. I temporarily resolved this issue by simply renaming "io".
Is it ok to wrap the klipse plugin in a closure to prevent these variables from having global scope? Or will that cause other things to break?
The text was updated successfully, but these errors were encountered:
It appears that the minified version of the plugin contains several short global variables, among them "io", which is also used globally by socket.io. Using both files at the same time causes a variable naming conflict and will ultimately cause socket.io to break. I temporarily resolved this issue by simply renaming "io".
Is it ok to wrap the klipse plugin in a closure to prevent these variables from having global scope? Or will that cause other things to break?
The text was updated successfully, but these errors were encountered: