Created
April 11, 2016 01:41
-
-
Save sophistifunk/d46626d09aee9328eccc1bde1502232d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Old | |
| var docHead = exports.getHeadElement(); | |
| var rootURL = getAttribute(docHead, "data-rooturl"); | |
| if (!rootURL) { | |
| throw "Attribute 'data-rooturl' not defined on the document <head> element."; | |
| } | |
| // New | |
| var docHead = exports.getHeadElement(); | |
| var rootURL = getAttribute(docHead, "data-rooturl"); | |
| if (rootURL === "") { | |
| rootURL = "/"; | |
| } | |
| if (!rootURL) { | |
| throw "Attribute 'data-rooturl' not defined on the document <head> element."; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment