OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <html i18n-values=" | 2 <html i18n-values=" |
3 dir:textdirection; | 3 dir:textdirection; |
4 bookmarkbarattached:bookmarkbarattached; | 4 bookmarkbarattached:bookmarkbarattached; |
5 hasattribution:hasattribution; | 5 hasattribution:hasattribution; |
6 anim:anim; | 6 anim:anim; |
7 syncispresent:syncispresent; | 7 syncispresent:syncispresent; |
8 customlogo:customlogo" | 8 customlogo:customlogo" |
9 install-animation-enabled="true"> | 9 install-animation-enabled="true"> |
10 <head> | 10 <head> |
(...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
144 <span id="login-username"></span> | 144 <span id="login-username"></span> |
145 </div> | 145 </div> |
146 | 146 |
147 <div class="maxiview" id="apps-maxiview"> | 147 <div class="maxiview" id="apps-maxiview"> |
148 <div id="apps-promo"> | 148 <div id="apps-promo"> |
149 <p id="apps-promo-heading"></p> | 149 <p id="apps-promo-heading"></p> |
150 <a class="g-button-basic" id="apps-promo-link" href=""></a><br> | 150 <a class="g-button-basic" id="apps-promo-link" href=""></a><br> |
151 <button id="apps-promo-hide"></button> | 151 <button id="apps-promo-hide"></button> |
152 </div> | 152 </div> |
153 <div id="apps-content"></div> | 153 <div id="apps-content"></div> |
| 154 <div id="notification-bubble" class="notification-bubble"> |
| 155 <img id="notification-close" src="chrome://theme/IDR_CLOSE_BAR" |
| 156 class="app-notification-close"> |
| 157 <strong id="notification-title"></strong><br> |
| 158 <span id="notification-message"></span><br><br> |
| 159 <a id="notification-link"></a></div> |
| 160 <div id="arrow-contents" class="arrow arrow-contents"></div> |
| 161 <div id="arrow-border" class="arrow arrow-border"></div> |
| 162 <div id="arrow-shadow" class="arrow arrow-shadow"></div> |
154 </div> | 163 </div> |
155 <div class="maxiview" id="most-visited-maxiview"></div> | 164 <div class="maxiview" id="most-visited-maxiview"></div> |
156 | 165 |
157 <div class="sections"> | 166 <div class="sections"> |
158 <!-- Start disabled. We only enable once we have installed default apps. --> | 167 <!-- Start disabled. We only enable once we have installed default apps. --> |
159 <div id="apps" class="section disabled" section="APPS"> | 168 <div id="apps" class="section disabled" section="APPS"> |
160 <h2> | 169 <h2> |
161 <img class="disclosure" img src="ntp/ntp_disclosure_triangle.png"> | 170 <img class="disclosure" img src="ntp/ntp_disclosure_triangle.png"> |
162 <div class="back"></div> | 171 <div class="back"></div> |
163 <span i18n-content="apps"></span> | 172 <span i18n-content="apps"></span> |
(...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
314 var recentlyClosedInitiallyMenu = shownSections & MENU_RECENT; | 323 var recentlyClosedInitiallyMenu = shownSections & MENU_RECENT; |
315 setSectionMenuMode('apps', Section.APPS, appsInitiallyMenu, MENU_APPS); | 324 setSectionMenuMode('apps', Section.APPS, appsInitiallyMenu, MENU_APPS); |
316 setSectionMenuMode('most-visited', Section.THUMB, mostVisitedInitiallyMenu, | 325 setSectionMenuMode('most-visited', Section.THUMB, mostVisitedInitiallyMenu, |
317 MENU_THUMB); | 326 MENU_THUMB); |
318 setSectionMenuMode('recently-closed', undefined, recentlyClosedInitiallyMenu, | 327 setSectionMenuMode('recently-closed', undefined, recentlyClosedInitiallyMenu, |
319 MENU_RECENT); | 328 MENU_RECENT); |
320 | 329 |
321 layoutSections(); | 330 layoutSections(); |
322 </script> | 331 </script> |
323 </html> | 332 </html> |
OLD | NEW |