-
Notifications
You must be signed in to change notification settings - Fork 296
/
Copy pathclient.js
34 lines (28 loc) · 849 Bytes
/
client.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
/* eslint-env browser */
var app = document.getElementById('app');
var time = document.getElementById('time');
var timer = setInterval(updateClock, 1000);
function updateClock() {
time.innerHTML = new Date().toString();
}
// Edit these styles to see them take effect immediately
app.style.display = 'table-cell';
app.style.width = '400px';
app.style.height = '400px';
app.style.border = '3px solid #339';
app.style.background = '#99d';
app.style.color = '#333';
app.style.textAlign = 'center';
app.style.verticalAlign = 'middle';
// Uncomment one of the following lines to see error handling
// require('unknown-module')
// } syntax-error
// Uncomment this next line to trigger a warning
// require('Assert')
// require('assert');
if (module.hot) {
module.hot.accept();
module.hot.dispose(function () {
clearInterval(timer);
});
}