Skip to content

Instantly share code, notes, and snippets.

@sophistifunk
Created April 11, 2016 01:41
Show Gist options
  • Select an option

  • Save sophistifunk/d46626d09aee9328eccc1bde1502232d to your computer and use it in GitHub Desktop.

Select an option

Save sophistifunk/d46626d09aee9328eccc1bde1502232d to your computer and use it in GitHub Desktop.
// 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