-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
49 lines (44 loc) · 1.47 KB
/
index.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
37
38
39
40
41
42
43
44
45
46
47
48
49
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Profiler</title>
<script src="build/profiler.js"></script>
<link rel="stylesheet" href="http://code.jquery.com/ui/1.9.1/themes/base/jquery-ui.css"/>
<link href="http://netdna.bootstrapcdn.com/twitter-bootstrap/2.3.2/css/bootstrap-combined.min.css" rel="stylesheet">
<script>
profiler.start('test a');
profiler.start('test a');
profiler.start('test a');
var i = 1000000;
while (i--) {
var b = i * i;
}
profiler.end('test a');
profiler.end('test a');
profiler.end('test a');
profiler.count('a');
profiler.setup({
url: 'http://google.com',
interval: 30,
firstInterval: 5
});
profiler.setup({
firstInterval: 5,
interval: 10,
url: 'http://google_.com'
});
profiler.startReporting();
</script>
</head>
<body>
Hello
<img src="http://farm4.staticflickr.com/3696/8811041586_d3975154e4_c.jpg" alt=""/>
<img src="http://farm3.staticflickr.com/2817/8806251646_feb4333c86_o.jpg" alt=""/>
<img src="http://farm3.staticflickr.com/2879/8805431526_732f27a085_b.jpg" alt=""/>
<script src="http://code.jquery.com/jquery-1.10.0.js"></script>
<script src="http://underscorejs.org/underscore.js"></script>
<script src="http://backbonejs.org/backbone.js"></script>
<script src="http://code.jquery.com/ui/1.9.2/jquery-ui.js"></script>
</body>
</html>