Skip to content

Commit 7a2bd70

Browse files
committed
nits whitespace
1 parent 243c217 commit 7a2bd70

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

example/index.html

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -93,14 +93,14 @@
9393
return msg.replace(/</g, '&lt;');
9494
}
9595

96-
function initFullScreen() {
96+
function initFullScreen() {
9797
var button = document.getElementById("fullscreen");
9898
button.addEventListener('click', function(event) {
99-
var elem = document.getElementById("videos");
100-
//show full screen
99+
var elem = document.getElementById("videos");
100+
//show full screen
101101
elem.webkitRequestFullScreen();
102102
});
103-
}
103+
}
104104

105105
function initNewRoom() {
106106
var button = document.getElementById("newRoom");
@@ -114,7 +114,7 @@
114114
var rnum = Math.floor(Math.random() * chars.length);
115115
randomstring += chars.substring(rnum,rnum+1);
116116
}
117-
117+
118118
window.location.hash = randomstring;
119119
location.reload();
120120
})
@@ -163,7 +163,7 @@
163163
alert('Your browser is not supported or you have to turn on flags. In chrome you go to chrome://flags and turn on Enable PeerConnection remember to restart chrome');
164164
}
165165

166-
166+
167167
var room = window.location.hash.slice(1);
168168

169169
//When using localhost
@@ -184,7 +184,7 @@
184184
initNewRoom();
185185
initChat();
186186
}
187-
187+
188188
window.onresize = function(event) {
189189
subdivideVideos();
190190
};

0 commit comments

Comments
 (0)