blob: 25c594e7e6d93742de73bc240111d35da7a1c066 (
plain)
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
|
<html i18n-values="dir:textdirection;">
<head>
<title></title>
<link rel="stylesheet" type="text/css" href="remoting_setup_flow.css" />
<style type="text/css">
#throb {
background-image: url("../../../../app/resources/throbber.png");
width: 16px;
height: 16px;
background-position: 0px;
margin: -3px 10px;
display: inline-block;
}
#setting_up {
margin: 100px;
text-align: center;
}
#setting_up_label {
margin: 15px;
font-weight: bold;
font-size: 125%;
}
</style>
<script src="chrome://resources/js/cr.js"></script>
<script>
function advanceThrobber() {
var throbber = document.getElementById('throb');
throbber.style.backgroundPositionX =
((parseInt(getComputedStyle(throbber).backgroundPositionX) - 16) %
576) + 'px';
}
setInterval(advanceThrobber, 30);
</script>
</head>
<body i18n-values=".style.fontFamily:fontfamily">
<form id="settingUpForm" onSubmit="return false;">
<div id="setting_up">
<span id="throbber_container">
<span id="throb"></span>
</span>
<div id="setting_up_label" i18n-content="settingup"></div>
</div>
<div class="remoting-footer">
<input id="cancelButton" type="button" i18n-values="value:cancel"
onclick='chrome.send("DialogClose", [""])' />
</div>
</form>
</body>
</html>
|