Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
Clear All
new posts

    Missing semicolon in load_skin.js

    Hi,
    We use the enterprise skin load_skin.js but I noticed that at several places no semicolon is used to end the line.
    For example this line in the beginning:
    isc.Page.loadStyleSheet("[SKIN]/skin_styles.css", theWindow)

    or this line at the end:
    isc.loadSkin()

    My experience is that this gives very strange/difficult errors in chrome. Is this something you solve in a different way? Maybe your obfuscation adds semi-colons automatically?

    Btw, I use jslint to check the javascript code I commit to my repository, does Isomorphic use something similar?

    gr. Martin

    #2
    Implicit semicolons is part of the JavaScript / ECMAScript language standard and does not cause problems in Google Chrome.

    Comment

    Working...
    X