OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <html i18n-values=" | 2 <html i18n-values=" |
3 dir:textdirection; | 3 dir:textdirection; |
4 hasattribution:hasattribution; | 4 hasattribution:hasattribution; |
5 customlogo:customlogo;"> | 5 customlogo:customlogo;"> |
6 <head> | 6 <head> |
7 <meta charset="utf-8"> | 7 <meta charset="utf-8"> |
8 <title i18n-content="title"></title> | 8 <title i18n-content="title"></title> |
9 <!-- Don't scale the viewport in either portrait or landscape mode. | 9 <!-- Don't scale the viewport in either portrait or landscape mode. |
10 Note that this means apps will be reflowed when rotated (like iPad). | 10 Note that this means apps will be reflowed when rotated (like iPad). |
11 If we wanted to maintain position we could remove 'maximum-scale' so | 11 If we wanted to maintain position we could remove 'maximum-scale' so |
12 that we'd zoom out in portrait mode, but then there would be a bunch | 12 that we'd zoom out in portrait mode, but then there would be a bunch |
13 of unusable space at the bottom. | 13 of unusable space at the bottom. |
14 --> | 14 --> |
15 <meta name="viewport" | 15 <meta name="viewport" |
16 content="user-scalable=no, width=device-width, maximum-scale=1.0"> | 16 content="user-scalable=no, width=device-width, maximum-scale=1.0"> |
17 | 17 |
18 <!-- It's important that this be the first script loaded. --> | 18 <!-- It's important that this be the first script loaded. --> |
19 <script src="logging.js"></script> | 19 <script src="logging.js"></script> |
20 | 20 |
21 <if expr="pp_ifdef('touchui')"> | 21 <if expr="pp_ifdef('touchui')"> |
22 <script> | 22 <script> |
23 document.documentElement.setAttribute('touchui', true); | 23 document.documentElement.setAttribute('touchui', true); |
24 </script> | 24 </script> |
25 </if> | 25 </if> |
26 | 26 |
| 27 <link rel="stylesheet" href="../shared/css/bubble.css"> |
27 <link rel="stylesheet" href="../shared/css/menu.css"> | 28 <link rel="stylesheet" href="../shared/css/menu.css"> |
28 <link rel="stylesheet" href="apps_page.css"> | 29 <link rel="stylesheet" href="apps_page.css"> |
29 <link rel="stylesheet" href="bookmarks_page.css"> | 30 <link rel="stylesheet" href="bookmarks_page.css"> |
30 <link rel="stylesheet" href="most_visited_page.css"> | 31 <link rel="stylesheet" href="most_visited_page.css"> |
31 <link rel="stylesheet" href="nav_dot.css"> | 32 <link rel="stylesheet" href="nav_dot.css"> |
32 <link rel="stylesheet" href="new_tab.css"> | 33 <link rel="stylesheet" href="new_tab.css"> |
33 <link rel="stylesheet" href="recently_closed.css"> | 34 <link rel="stylesheet" href="recently_closed.css"> |
34 <link rel="stylesheet" href="tile_page.css"> | 35 <link rel="stylesheet" href="tile_page.css"> |
35 <link id="themecss" rel="stylesheet"> | 36 <link id="themecss" rel="stylesheet"> |
36 | 37 |
37 <script src="../shared/js/event_tracker.js"></script> | 38 <script src="../shared/js/event_tracker.js"></script> |
38 <script src="../shared/js/local_strings.js"></script> | 39 <script src="../shared/js/local_strings.js"></script> |
39 <script src="../shared/js/util.js"></script> | 40 <script src="../shared/js/util.js"></script> |
40 | 41 |
41 <script src="../shared/js/cr.js"></script> | 42 <script src="../shared/js/cr.js"></script> |
42 <script src="../shared/js/cr/ui.js"></script> | 43 <script src="../shared/js/cr/ui.js"></script> |
| 44 <script src="../shared/js/cr/ui/bubble.js"></script> |
43 <script src="../shared/js/cr/ui/menu.js"></script> | 45 <script src="../shared/js/cr/ui/menu.js"></script> |
44 <script src="../shared/js/cr/ui/menu_item.js"></script> | 46 <script src="../shared/js/cr/ui/menu_item.js"></script> |
45 <script src="../shared/js/cr/ui/position_util.js"></script> | 47 <script src="../shared/js/cr/ui/position_util.js"></script> |
46 <script src="../shared/js/cr/ui/menu_button.js"></script> | 48 <script src="../shared/js/cr/ui/menu_button.js"></script> |
47 <script src="../shared/js/cr/ui/context_menu_handler.js"></script> | 49 <script src="../shared/js/cr/ui/context_menu_handler.js"></script> |
48 | 50 |
49 <script src="drag_wrapper.js"></script> | 51 <script src="drag_wrapper.js"></script> |
50 <script src="tile_page.js"></script> | 52 <script src="tile_page.js"></script> |
51 <script src="apps_page.js"></script> | 53 <script src="apps_page.js"></script> |
52 <script src="bookmarks_page.js"></script> | 54 <script src="bookmarks_page.js"></script> |
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
97 </div> | 99 </div> |
98 </body> | 100 </body> |
99 | 101 |
100 <!-- Apps promo. --> | 102 <!-- Apps promo. --> |
101 <div id="apps-promo-extras-template" class="apps-promo-extras" hidden> | 103 <div id="apps-promo-extras-template" class="apps-promo-extras" hidden> |
102 <h3 class="apps-promo-heading"></h3> | 104 <h3 class="apps-promo-heading"></h3> |
103 <a class="apps-promo-link g-button-basic"><a/> | 105 <a class="apps-promo-link g-button-basic"><a/> |
104 <a class="apps-promo-hide link-color" href="#"><a/> | 106 <a class="apps-promo-hide link-color" href="#"><a/> |
105 </div> | 107 </div> |
106 </html> | 108 </html> |
OLD | NEW |