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 has_3d:has_3d"> | 8 has_3d:has_3d"> |
9 <head> | 9 <head> |
10 <meta charset="utf-8"> | 10 <meta charset="utf-8"> |
(...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
157 silly without any. --> | 157 silly without any. --> |
158 <div id="recently-closed" class="section hidden disabled" section="RECENT" | 158 <div id="recently-closed" class="section hidden disabled" section="RECENT" |
159 noexpand="true"> | 159 noexpand="true"> |
160 <h2> | 160 <h2> |
161 <div class="back"></div> | 161 <div class="back"></div> |
162 <span i18n-content="recentlyclosed"></span> | 162 <span i18n-content="recentlyclosed"></span> |
163 </h2> | 163 </h2> |
164 <div class="miniview"></div> | 164 <div class="miniview"></div> |
165 </div> | 165 </div> |
166 | 166 |
167 <!-- TODO(aa): Remove this -- we don't use it anymore. --> | |
168 <div id="debug" class="section disabled" section="DEBUG"> | |
169 <h2><span>Debug</span></h2> | |
170 <div id="apps-launch-control"> | |
171 Open apps in:<label | |
172 ><input type="radio" name="launch-container-type" value="" | |
173 checked="true">Default</label | |
174 ><input type="radio" name="launch-container-type" value="tab" | |
175 >Tab</label | |
176 ><label><input type="radio" name="launch-container-type" value="window" | |
177 >Window</label | |
178 ><label><input type="radio" name="launch-container-type" value="panel" | |
179 >Panel</label> | |
180 </div> | |
181 </div> | |
182 | |
183 <div id="sync-status" class="section disabled"> | 167 <div id="sync-status" class="section disabled"> |
184 <div> | 168 <div> |
185 <h3></h3> | 169 <h3></h3> |
186 <span></span> | 170 <span></span> |
187 </div> | 171 </div> |
188 </div> | 172 </div> |
189 </div> | 173 </div> |
190 | 174 |
191 <div id="attribution" class="attribution"> | 175 <div id="attribution" class="attribution"> |
192 <div i18n-content="attributionintro"></div> | 176 <div i18n-content="attributionintro"></div> |
(...skipping 14 matching lines...) Expand all Loading... |
207 <script src="shared/js/parse_html_subset.js"></script> | 191 <script src="shared/js/parse_html_subset.js"></script> |
208 <script src="ntp/util.js"></script> | 192 <script src="ntp/util.js"></script> |
209 <script src="ntp/most_visited.js"></script> | 193 <script src="ntp/most_visited.js"></script> |
210 <script src="new_new_tab.js"></script> | 194 <script src="new_new_tab.js"></script> |
211 <script src="ntp/apps.js"></script> | 195 <script src="ntp/apps.js"></script> |
212 | 196 |
213 <script> | 197 <script> |
214 updateSimpleSection('apps', Section.APPS); | 198 updateSimpleSection('apps', Section.APPS); |
215 updateSimpleSection('most-visited', Section.THUMB); | 199 updateSimpleSection('most-visited', Section.THUMB); |
216 updateSimpleSection('recently-closed', Section.RECENT); | 200 updateSimpleSection('recently-closed', Section.RECENT); |
217 updateSimpleSection('debug', Section.DEBUG); | |
218 | |
219 layoutSections(); | 201 layoutSections(); |
220 </script> | 202 </script> |
221 </html> | 203 </html> |
OLD | NEW |