Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 <link rel="import" href="chrome://resources/html/i18n_behavior.html"> | 1 <link rel="import" href="chrome://resources/html/i18n_behavior.html"> |
| 2 <link rel="import" href="chrome://resources/html/md_select_css.html"> | 2 <link rel="import" href="chrome://resources/html/md_select_css.html"> |
| 3 <link rel="import" href="chrome://resources/html/polymer.html"> | 3 <link rel="import" href="chrome://resources/html/polymer.html"> |
| 4 <link rel="import" href="chrome://resources/html/web_ui_listener_behavior.html"> | 4 <link rel="import" href="chrome://resources/html/web_ui_listener_behavior.html"> |
| 5 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-ani matable.html"> | 5 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-ani matable.html"> |
| 6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper -icon-button-light.html"> | 6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper -icon-button-light.html"> |
| 7 <link rel="import" href="device_page_browser_proxy.html"> | 7 <link rel="import" href="device_page_browser_proxy.html"> |
| 8 <link rel="import" href="display.html"> | 8 <link rel="import" href="display.html"> |
| 9 <link rel="import" href="keyboard.html"> | 9 <link rel="import" href="keyboard.html"> |
| 10 <link rel="import" href="pointers.html"> | 10 <link rel="import" href="pointers.html"> |
| (...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 94 </settings-pointers> | 94 </settings-pointers> |
| 95 </settings-subpage> | 95 </settings-subpage> |
| 96 </template> | 96 </template> |
| 97 <template is="dom-if" route-path="/keyboard-overlay"> | 97 <template is="dom-if" route-path="/keyboard-overlay"> |
| 98 <settings-subpage | 98 <settings-subpage |
| 99 associated-control="[[$$('#keyboardRow')]]" | 99 associated-control="[[$$('#keyboardRow')]]" |
| 100 page-title="$i18n{keyboardTitle}"> | 100 page-title="$i18n{keyboardTitle}"> |
| 101 <settings-keyboard prefs="{{prefs}}"></settings-keyboard> | 101 <settings-keyboard prefs="{{prefs}}"></settings-keyboard> |
| 102 </settings-subpage> | 102 </settings-subpage> |
| 103 </template> | 103 </template> |
| 104 <template is="dom-if" route-path="/stylus"> | 104 <template is="dom-if" if="[[hasStylus_]]"> |
| 105 <settings-subpage | 105 <template is="dom-if" route-path="/stylus"> |
|
jdufault
2017/02/28 23:41:00
Does navigating directly to the stylus subpage wor
stevenjb
2017/03/01 00:03:16
Yes, the stylus page is fine. The problem is that
stevenjb
2017/03/01 00:10:33
I just realized I answered the wrong question :)
stevenjb
2017/03/01 00:31:37
OK, I looked at this some more and understand why
| |
| 106 associated-control="[[$$('#stylusRow')]]" | 106 <settings-subpage |
| 107 page-title="$i18n{stylusTitle}"> | 107 associated-control="[[$$('#stylusRow')]]" |
| 108 <settings-stylus prefs="{{prefs}}"></settings-stylus> | 108 page-title="$i18n{stylusTitle}"> |
| 109 </settings-subpage> | 109 <settings-stylus prefs="{{prefs}}"></settings-stylus> |
| 110 </settings-subpage> | |
| 111 </template> | |
| 110 </template> | 112 </template> |
| 111 <template is="dom-if" route-path="/display"> | 113 <template is="dom-if" route-path="/display"> |
| 112 <settings-subpage | 114 <settings-subpage |
| 113 associated-control="[[$$('#displayRow')]]" | 115 associated-control="[[$$('#displayRow')]]" |
| 114 page-title="$i18n{displayTitle}"> | 116 page-title="$i18n{displayTitle}"> |
| 115 <settings-display></settings-display> | 117 <settings-display></settings-display> |
| 116 </settings-subpage> | 118 </settings-subpage> |
| 117 </template> | 119 </template> |
| 118 <template is="dom-if" route-path="/storage"> | 120 <template is="dom-if" route-path="/storage"> |
| 119 <settings-subpage | 121 <settings-subpage |
| 120 associated-control="[[$$('#storageRow')]]" | 122 associated-control="[[$$('#storageRow')]]" |
| 121 page-title="$i18n{storageTitle}"> | 123 page-title="$i18n{storageTitle}"> |
| 122 <settings-storage></settings-storage> | 124 <settings-storage></settings-storage> |
| 123 </settings-subpage> | 125 </settings-subpage> |
| 124 </template> | 126 </template> |
| 125 </settings-animated-pages> | 127 </settings-animated-pages> |
| 126 </template> | 128 </template> |
| 127 <script src="device_page.js"></script> | 129 <script src="device_page.js"></script> |
| 128 </dom-module> | 130 </dom-module> |
| OLD | NEW |