| 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 125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 136 </div> | 136 </div> |
| 137 | 137 |
| 138 <div id="login-container"> | 138 <div id="login-container"> |
| 139 <span id="login-username"></span> | 139 <span id="login-username"></span> |
| 140 </div> | 140 </div> |
| 141 | 141 |
| 142 <div class="maxiview" id="apps-maxiview"> | 142 <div class="maxiview" id="apps-maxiview"> |
| 143 <div id="apps-promo"> | 143 <div id="apps-promo"> |
| 144 <button id="apps-promo-hide" i18n-content="appspromohide"></button> | 144 <button id="apps-promo-hide" i18n-content="appspromohide"></button> |
| 145 <h3 i18n-content="appspromoheader"></h3> | 145 <h3 i18n-content="appspromoheader"></h3> |
| 146 <p id="apps-promo-text1" i18n-content="appspromotext1"></p> | 146 <p id="apps-promo-text1" i18n-values=".innerHTML:appspromotext1"></p> |
| 147 <p id="apps-promo-text2" i18n-content="appspromotext2"></p> | 147 <p id="apps-promo-text2" i18n-content="appspromotext2"></p> |
| 148 </div> | 148 </div> |
| 149 <div id="apps-content"></div> | 149 <div id="apps-content"></div> |
| 150 </div> | 150 </div> |
| 151 <div class="maxiview" id="most-visited-maxiview"></div> | 151 <div class="maxiview" id="most-visited-maxiview"></div> |
| 152 | 152 |
| 153 <div class="sections"> | 153 <div class="sections"> |
| 154 <!-- Start disabled. We only enable once we have installed default apps. --> | 154 <!-- Start disabled. We only enable once we have installed default apps. --> |
| 155 <div id="apps" class="section disabled" section="APPS"> | 155 <div id="apps" class="section disabled" section="APPS"> |
| 156 <h2> | 156 <h2> |
| (...skipping 172 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 329 // disabled or not. So we need to add the 'disabled' class back to the apps | 329 // disabled or not. So we need to add the 'disabled' class back to the apps |
| 330 // section here. We remove it later, once we know for sure we want it to be | 330 // section here. We remove it later, once we know for sure we want it to be |
| 331 // enabled. | 331 // enabled. |
| 332 // | 332 // |
| 333 // See also: crbug.com/67273. | 333 // See also: crbug.com/67273. |
| 334 $('apps').classList.add('disabled'); | 334 $('apps').classList.add('disabled'); |
| 335 | 335 |
| 336 layoutSections(); | 336 layoutSections(); |
| 337 </script> | 337 </script> |
| 338 </html> | 338 </html> |
| OLD | NEW |