| 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 241 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 252 <button class="default" command="#apps-launch-command"></button> | 252 <button class="default" command="#apps-launch-command"></button> |
| 253 <hr> | 253 <hr> |
| 254 <button command="#apps-launch-type-regular" launch-type="1"></button> | 254 <button command="#apps-launch-type-regular" launch-type="1"></button> |
| 255 <button command="#apps-launch-type-pinned" launch-type="0"></button> | 255 <button command="#apps-launch-type-pinned" launch-type="0"></button> |
| 256 <button id="apps-launch-type-window-menu-item" | 256 <button id="apps-launch-type-window-menu-item" |
| 257 command="#apps-launch-type-window" launch-type="3"></button> | 257 command="#apps-launch-type-window" launch-type="3"></button> |
| 258 <button command="#apps-launch-type-fullscreen" launch-type="2"></button> | 258 <button command="#apps-launch-type-fullscreen" launch-type="2"></button> |
| 259 <hr> | 259 <hr> |
| 260 <button command="#apps-options-command"></button> | 260 <button command="#apps-options-command"></button> |
| 261 <button command="#apps-uninstall-command"></button> | 261 <button command="#apps-uninstall-command"></button> |
| 262 <hr> | 262 <hr id="apps-create-shortcut-command-separator"> |
| 263 <button id="apps-create-shortcut-command-menu-item" | 263 <button id="apps-create-shortcut-command-menu-item" |
| 264 command="#apps-create-shortcut-command"></button> | 264 command="#apps-create-shortcut-command"></button> |
| 265 </menu> | 265 </menu> |
| 266 | 266 |
| 267 </body> | 267 </body> |
| 268 | 268 |
| 269 <script src="shared/js/i18n_template.js"></script> | 269 <script src="shared/js/i18n_template.js"></script> |
| 270 <script> | 270 <script> |
| 271 i18nTemplate.process(document, templateData); | 271 i18nTemplate.process(document, templateData); |
| 272 </script> | 272 </script> |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 315 setSectionVisible('apps', Section.APPS, appsInitiallyVisible, MINIMIZED_APPS); | 315 setSectionVisible('apps', Section.APPS, appsInitiallyVisible, MINIMIZED_APPS); |
| 316 setSectionVisible( | 316 setSectionVisible( |
| 317 'most-visited', Section.THUMB, | 317 'most-visited', Section.THUMB, |
| 318 mostVisitedInitiallyVisible, MINIMIZED_THUMB); | 318 mostVisitedInitiallyVisible, MINIMIZED_THUMB); |
| 319 setSectionVisible( | 319 setSectionVisible( |
| 320 'recently-closed', undefined, | 320 'recently-closed', undefined, |
| 321 recentlyClosedInitiallyVisible, MINIMIZED_RECENT); | 321 recentlyClosedInitiallyVisible, MINIMIZED_RECENT); |
| 322 layoutSections(); | 322 layoutSections(); |
| 323 </script> | 323 </script> |
| 324 </html> | 324 </html> |
| OLD | NEW |