Skip to content
This repository was archived by the owner on Feb 7, 2023. It is now read-only.

Commit d8fc9b0

Browse files
committed
converting single-quotes to double-quotes
1 parent b681be8 commit d8fc9b0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

source/_patternlab-files/styleguide.mustache

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,14 +31,14 @@
3131
}
3232
3333
// if there are clicks on the iframe make sure the nav in the iframe parent closes
34-
var body = document.getElementsByTagName('body');
34+
var body = document.getElementsByTagName("body");
3535
body[0].onclick = function() {
3636
var targetOrigin = (window.location.protocol == "file:") ? "*" : window.location.protocol+"//"+window.location.host;
3737
parent.postMessage( { "bodyclick": "bodyclick" }, targetOrigin)
3838
};
3939
4040
// find all links and add an onclick handler for replacing the iframe address so the history works
41-
var aTags = document.getElementsByTagName('a');
41+
var aTags = document.getElementsByTagName("a");
4242
for (a in aTags) {
4343
aTags[a].onclick = function(e) {
4444
e.preventDefault();

0 commit comments

Comments
 (0)