| 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,td,div,p,a,font,span {font-family: arial,sans-serif;} | 5 body,td,div,p,a,font,span {font-family: arial,sans-serif;} |
| 6 body { bgcolor:"#ffffff" } | 6 body { bgcolor:"#ffffff" } |
| 7 .gaia.le.button { font-family: Arial, Helvetica, sans-serif; font-size: smaller;
} | 7 .gaia.le.button { font-family: Arial, Helvetica, sans-serif; font-size: smaller;
} |
| 8 .endaligned { | 8 .endaligned { |
| 9 text-align: right; | 9 text-align: right; |
| 10 } | 10 } |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 47 } | 47 } |
| 48 | 48 |
| 49 function showMergeAndSyncError() { | 49 function showMergeAndSyncError() { |
| 50 var throbber = document.getElementById('throbber_container'); | 50 var throbber = document.getElementById('throbber_container'); |
| 51 throbber.style.display = "none"; | 51 throbber.style.display = "none"; |
| 52 document.getElementById("header").innerHTML = | 52 document.getElementById("header").innerHTML = |
| 53 "<p><font size='-1'><b>" + templateData['setuperror'] | 53 "<p><font size='-1'><b>" + templateData['setuperror'] |
| 54 + "</b></font></p>"; | 54 + "</b></font></p>"; |
| 55 } | 55 } |
| 56 | 56 |
| 57 function onPageShown() { |
| 58 document.getElementById("acceptMerge").focus(); |
| 59 } |
| 60 |
| 57 </script> | 61 </script> |
| 58 </head> | 62 </head> |
| 59 <body onload="setInterval(advanceThrobber, 30);"> | 63 <body onload="setInterval(advanceThrobber, 30);"> |
| 60 <table height="100%"> | 64 <table height="100%"> |
| 61 <tr valign="top"> | 65 <tr valign="top"> |
| 62 <td align="center"> | 66 <td align="center"> |
| 63 <div id="header" align="left"> | 67 <div id="header" align="left"> |
| 64 <p class="textaligned"><font size="-1"><b> | 68 <p class="textaligned"><font size="-1"><b> |
| 65 <span i18n-content="introduction"></span> | 69 <span i18n-content="introduction"></span> |
| 66 </b></font></p> | 70 </b></font></p> |
| (...skipping 15 matching lines...) Expand all Loading... |
| 82 <input id="acceptMerge" type="button" class="gaia le button" name="accept" | 86 <input id="acceptMerge" type="button" class="gaia le button" name="accept" |
| 83 i18n-values="value:mergeandsynclabel" | 87 i18n-values="value:mergeandsynclabel" |
| 84 onclick="acceptMergeAndSync();" /> | 88 onclick="acceptMergeAndSync();" /> |
| 85 <input id="close" type="button" i18n-values="value:abortlabel" | 89 <input id="close" type="button" i18n-values="value:abortlabel" |
| 86 onclick="Close();" style="width:85"/> | 90 onclick="Close();" style="width:85"/> |
| 87 </td> | 91 </td> |
| 88 </tr> | 92 </tr> |
| 89 </table> | 93 </table> |
| 90 </body> | 94 </body> |
| 91 </html> | 95 </html> |
| OLD | NEW |