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 as the addPlugin function below is trying to run even if webSockets are not supported (i.e firefox 3.5)
causing the following error
this.reloader is undefined this.reloader.addPlugin(plugin);
LiveReload = window.LiveReload = new (__livereload.LiveReload)(window);
for (k in window) {
if (k.match(/^LiveReloadPlugin/)) {
LiveReload.addPlugin(window[k]);
}
}
The text was updated successfully, but these errors were encountered:
It appears as the
addPlugin
function below is trying to run even if webSockets are not supported (i.e firefox 3.5)causing the following error
this.reloader is undefined this.reloader.addPlugin(plugin);
The text was updated successfully, but these errors were encountered: