-
Notifications
You must be signed in to change notification settings - Fork 0
/
master.html
36 lines (30 loc) · 1.15 KB
/
master.html
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
35
36
<!doctype html>
<head>
<meta charset="utf-8" />
<title>Tasker</title>
<link href="http://fonts.googleapis.com/css?family=Roboto:400,100" rel="stylesheet" />
<style>
body {
margin: 0 auto
font: normal 14px/1.42 "Roboto", sans-serif
background: url('http://source.unsplash.com/random/800x600') top center no-repeat fixed;
background-size: cover; padding-top: 75px;
}
</style>
</head>
<body>
<H1 onClick="flash( 'Tasker flash!')">Taskering</H1>
<div id="log" style="font-family: 'Roboto'; line-height: 18px; color: #731717; letter-spacing: 0.5px;"></div>
<script type="text/javascript">
// Catch errors
window.onerror = function(errorMsg, url, lineNumber, column, errorObj) {
document.getElementById('log').innerHTML += '<br><strong>New error!</strong><br>'+
errorMsg + '<br>' +
url + ':'+lineNumber+'<br>' +
errorObj + '<hr>';
return true;
};
</script>
<script crossorigin="anonymous" type="text/javascript" src="https://gsabater.github.io/Tasker-Scripts/dist/js/dev.js"></script>
</body>
</html>