| OLD | NEW |
| 1 <html i18n-values="dir:textdirection;"> | 1 <html i18n-values="dir:textdirection;"> |
| 2 <head> | 2 <head> |
| 3 <title></title> | 3 <title></title> |
| 4 <style type="text/css"> | 4 <style type="text/css"> |
| 5 body { | 5 body { |
| 6 background: #FFFFFF; | 6 background: #FFFFFF; |
| 7 font-size: 11pt; | 7 font-size: 11pt; |
| 8 line-height: 1.5em; | 8 line-height: 1.5em; |
| 9 margin: 10px 15px; | 9 margin: 10px 15px; |
| 10 -webkit-user-select: none; | 10 -webkit-user-select: none; |
| (...skipping 26 matching lines...) Expand all Loading... |
| 37 min-width: 87px; | 37 min-width: 87px; |
| 38 min-height: 26px; | 38 min-height: 26px; |
| 39 } | 39 } |
| 40 html[os='mac'] input[type='submit'] { | 40 html[os='mac'] input[type='submit'] { |
| 41 font-size: 12pt; | 41 font-size: 12pt; |
| 42 } | 42 } |
| 43 | 43 |
| 44 </style> | 44 </style> |
| 45 <script> | 45 <script> |
| 46 function setShowFirstTimeSetupSummary() { | 46 function setShowFirstTimeSetupSummary() { |
| 47 document.getElementById("summary").innerHTML = | 47 // TODO(hclam): Show the information for the first time setup. |
| 48 templateData['firsttimesetupsummary']; | |
| 49 } | 48 } |
| 50 function setMessage(msg) { | 49 function setMessage(msg) { |
| 51 document.getElementById('msgContent').innerHTML = msg; | 50 document.getElementById('msgContent').innerHTML = msg; |
| 52 } | 51 } |
| 53 function onPageShown() { | 52 function onPageShown() { |
| 54 document.getElementById("close").focus(); | 53 document.getElementById("close").focus(); |
| 55 } | 54 } |
| 56 </script> | 55 </script> |
| 57 </head> | 56 </head> |
| 58 <body i18n-values=".style.fontFamily:fontfamily"> | 57 <body i18n-values=".style.fontFamily:fontfamily"> |
| 59 <div class="remoting-header" i18n-content="success"></div> | 58 <div class="remoting-header" i18n-content="success"></div> |
| 60 <div id="msgContent"></div> | 59 <div id="msgContent">Setup completed.</div> |
| 61 <div id="summary" i18n-content="setupsummary"></div> | |
| 62 <div class="remoting-footer"> | 60 <div class="remoting-footer"> |
| 63 <input id="close" type="submit" i18n-values="value:okay" | 61 <input id="close" type="submit" i18n-values="value:okay" |
| 64 onclick='chrome.send("DialogClose", [""])' /> | 62 onclick='chrome.send("DialogClose", [""])' /> |
| 65 </div> | 63 </div> |
| 66 </body> | 64 </body> |
| 67 </html> | 65 </html> |
| OLD | NEW |