blob: 88a365cf34a9f5190693dbd9f8003d5dbf7647b2 (
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
|
<html i18n-values="dir:textdirection;">
<head>
<title></title>
<style type="text/css">
body {
background: #FFFFFF;
font-size: 11pt;
line-height: 1.5em;
margin: 10px 15px;
-webkit-user-select: none;
}
.remoting-header {
font-size: 1.2em;
font-weight: bold;
}
.remoting-success-image {
text-align: center;
margin: 20px;
}
#message {
font-weight: bold;
}
.remoting-footer {
position: fixed;
right: 0px;
bottom: 0px;
margin-right: 10px;
margin-bottom: 10px;
}
html[dir='rtl'] .remoting-footer {
text-align: left;
left: 0px;
bottom: 0px;
margin-left: 20px;
}
input[type='submit'] {
min-width: 87px;
min-height: 26px;
}
html[os='mac'] input[type='submit'] {
font-size: 12pt;
}
</style>
<script>
function setShowFirstTimeSetupSummary() {
document.getElementById("summary").innerHTML =
templateData['firsttimesetupsummary'];
}
function setMessage(msg) {
document.getElementById('msgContent').innerHTML = msg;
}
function onPageShown() {
document.getElementById("close").focus();
}
</script>
</head>
<body i18n-values=".style.fontFamily:fontfamily">
<div class="remoting-header" i18n-content="success"></div>
<div id="msgContent"></div>
<div id="summary" i18n-content="setupsummary"></div>
<div class="remoting-footer">
<input id="close" type="submit" i18n-values="value:okay"
onclick='chrome.send("DialogClose", [""])' />
</div>
</body>
</html>
|