OLD | NEW |
| (Empty) |
1 <html i18n-values="dir:textdirection;"> | |
2 <head> | |
3 <title></title> | |
4 <link rel="stylesheet" type="text/css" href="remoting_setup_flow.css" /> | |
5 <script> | |
6 function setShowFirstTimeSetupSummary() { | |
7 document.getElementById("summary").innerHTML = | |
8 templateData['firsttimesetupsummary']; | |
9 } | |
10 function setMessage(msg) { | |
11 document.getElementById('msgContent').innerHTML = msg; | |
12 } | |
13 function onPageShown() { | |
14 document.getElementById("close").focus(); | |
15 } | |
16 </script> | |
17 </head> | |
18 <body i18n-values=".style.fontFamily:fontfamily"> | |
19 <div class="remoting-header" i18n-content="success"></div> | |
20 <div class="remoting-success-image"> | |
21 <img src="../../resources/options/success-large.png" /> | |
22 </div> | |
23 <div id="msgContent"></div> | |
24 <div class="remoting-footer"> | |
25 <input id="close" type="submit" i18n-values="value:okay" | |
26 onclick='chrome.send("DialogClose", [""])' /> | |
27 </div> | |
28 </body> | |
29 </html> | |
OLD | NEW |