Skip to content

Commit

Permalink
Lint fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Steven Orvell committed Nov 15, 2018
1 parent 77f3436 commit 41c75c2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/utils/settings.html
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
* @memberof Polymer
*/
Polymer.rootPath = Polymer.rootPath ||
Polymer.ResolveUrl.pathFromUrl(document.baseURI || window.location.href);;
Polymer.ResolveUrl.pathFromUrl(document.baseURI || window.location.href);

/**
* Sets the global rootPath property used by `Polymer.ElementMixin` and
Expand Down Expand Up @@ -108,8 +108,8 @@
Polymer.passiveTouchGestures = usePassive;
};

Polymer.legacyOptimizations = Polymer.legacyOptimizations ||
window.PolymerSettings && PolymerSettings.legacyOptimizations || false;
Polymer.legacyOptimizations = Polymer.legacyOptimizations ||
window.PolymerSettings && window.PolymerSettings.legacyOptimizations || false;

/**
* Sets `legacyOptimizations` globally for all elements. Enables
Expand Down

0 comments on commit 41c75c2

Please sign in to comment.