OLD | NEW |
1 <script> | 1 <script> |
2 (function () { | 2 (function () { |
3 // Contains the latest snapshot of sync about info. | 3 // Contains the latest snapshot of sync about info. |
4 chrome.sync.aboutInfo = {}; | 4 chrome.sync.aboutInfo = {}; |
5 | 5 |
6 // TODO(akalin): Make aboutInfo have key names likeThis and not | 6 // TODO(akalin): Make aboutInfo have key names likeThis and not |
7 // like_this. | 7 // like_this. |
8 function refreshAboutInfo(aboutInfo) { | 8 function refreshAboutInfo(aboutInfo) { |
9 chrome.sync.aboutInfo = aboutInfo; | 9 chrome.sync.aboutInfo = aboutInfo; |
10 var aboutInfoDiv = document.getElementById('aboutInfo'); | 10 var aboutInfoDiv = document.getElementById('aboutInfo'); |
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
45 table#routingInfo tr:nth-child(odd) { | 45 table#routingInfo tr:nth-child(odd) { |
46 background: #ccffcc; | 46 background: #ccffcc; |
47 } | 47 } |
48 </style> | 48 </style> |
49 | 49 |
50 <div id='aboutInfo'> | 50 <div id='aboutInfo'> |
51 <div class="column"> | 51 <div class="column"> |
52 <h2>Summary</h2> | 52 <h2>Summary</h2> |
53 <p jscontent="summary"/> | 53 <p jscontent="summary"/> |
54 <p jsdisplay="unrecoverable_error_detected"> | 54 <p jsdisplay="unrecoverable_error_detected"> |
55 <span class="err">Unrecoverable Error Detected!</span> | 55 <span class="err" jscontent="unrecoverable_error_message"></span> |
56 <span jscontent="unrecoverable_error_message"></span> | |
57 <span jscontent="unrecoverable_error_location"></span> | |
58 </p> | 56 </p> |
59 | 57 |
60 <h2>Sync URL</h2> | 58 <h2>Sync URL</h2> |
61 <p jscontent="service_url"/> | 59 <p jscontent="service_url"/> |
62 | 60 |
63 <h2>Details</h2> | 61 <h2>Details</h2> |
64 <table id="aboutDetails"> | 62 <table id="aboutDetails"> |
65 <tr> | 63 <tr> |
66 <td>Authenticated</td> | 64 <td>Authenticated</td> |
67 <td> | 65 <td> |
(...skipping 15 matching lines...) Expand all Loading... |
83 <div class="column"> | 81 <div class="column"> |
84 <h2>Routing Info</h2> | 82 <h2>Routing Info</h2> |
85 <table id="routingInfo"> | 83 <table id="routingInfo"> |
86 <tr jsselect="routing_info"> | 84 <tr jsselect="routing_info"> |
87 <td jscontent="model_type"/> | 85 <td jscontent="model_type"/> |
88 <td jscontent="group"/> | 86 <td jscontent="group"/> |
89 </tr> | 87 </tr> |
90 </table> | 88 </table> |
91 </div> | 89 </div> |
92 </div> | 90 </div> |
OLD | NEW |