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
I have a JS file with code like
this.parentNode.classList.add("overlay")
and another JS file called overlay.js
The code in the first file incorrectly gets changed to
this.parentNode.classList.add("/overlay.sdfsdfs")
The overlay string is not a reference to the overlay.js file and should not be renamed. Should extensionless javascript be supported in the first place?
The text was updated successfully, but these errors were encountered:
This bit me too on the upgrade, seems like it shouldn't be handling cases where there is no extension. We have a JS file review.js and the number of times the text review comes up in other JS files is pretty high, all used in contexts where it is not referencing a JS file
I have a JS file with code like
this.parentNode.classList.add("overlay")
and another JS file called overlay.js
The code in the first file incorrectly gets changed to
this.parentNode.classList.add("/overlay.sdfsdfs")
The overlay string is not a reference to the overlay.js file and should not be renamed. Should extensionless javascript be supported in the first place?
The text was updated successfully, but these errors were encountered: