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 118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
129 <div id="attribution" class="attribution nolayout"> | 129 <div id="attribution" class="attribution nolayout"> |
130 <div i18n-content="attributionintro"></div> | 130 <div i18n-content="attributionintro"></div> |
131 <img id="attribution-img"> | 131 <img id="attribution-img"> |
132 </div> | 132 </div> |
133 | 133 |
134 <div id="main"> | 134 <div id="main"> |
135 | 135 |
136 <div id="notification-container"> | 136 <div id="notification-container"> |
137 <div id="notification"> | 137 <div id="notification"> |
138 <span> </span> | 138 <span> </span> |
139 <span class="link"><span class="link-color"></span></span> | 139 <span class="link"><span class="link-color" id="action-link"></span> |
| 140 </span> |
| 141 <span class="link"><span class="link-color" id="close-link"></span> |
| 142 </span> |
140 </div> | 143 </div> |
141 </div> | 144 </div> |
142 | 145 |
143 <div id="login-container"> | 146 <div id="login-container"> |
144 <span id="login-username"></span> | 147 <span id="login-username"></span> |
145 </div> | 148 </div> |
146 | 149 |
147 <div class="maxiview" id="apps-maxiview"> | 150 <div class="maxiview" id="apps-maxiview"> |
148 <div id="apps-promo"> | 151 <div id="apps-promo"> |
149 <button id="apps-promo-hide" i18n-content="appspromohide"></button> | 152 <button id="apps-promo-hide" i18n-content="appspromohide"></button> |
(...skipping 165 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
315 var recentlyClosedInitiallyMenu = shownSections & MENU_RECENT; | 318 var recentlyClosedInitiallyMenu = shownSections & MENU_RECENT; |
316 setSectionMenuMode('apps', Section.APPS, appsInitiallyMenu, MENU_APPS); | 319 setSectionMenuMode('apps', Section.APPS, appsInitiallyMenu, MENU_APPS); |
317 setSectionMenuMode('most-visited', Section.THUMB, mostVisitedInitiallyMenu, | 320 setSectionMenuMode('most-visited', Section.THUMB, mostVisitedInitiallyMenu, |
318 MENU_THUMB); | 321 MENU_THUMB); |
319 setSectionMenuMode('recently-closed', undefined, recentlyClosedInitiallyMenu, | 322 setSectionMenuMode('recently-closed', undefined, recentlyClosedInitiallyMenu, |
320 MENU_RECENT); | 323 MENU_RECENT); |
321 | 324 |
322 layoutSections(); | 325 layoutSections(); |
323 </script> | 326 </script> |
324 </html> | 327 </html> |
OLD | NEW |