Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Side by Side Diff: options.html

Issue 29337729: Issue 2374 - Implemented Tweaks section in options page (Closed)
Patch Set: Created March 16, 2016, 11:13 a.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
« no previous file with comments | « messageResponder.js ('k') | options.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <!-- 2 <!--
3 - This file is part of Adblock Plus <https://adblockplus.org/>, 3 - This file is part of Adblock Plus <https://adblockplus.org/>,
4 - Copyright (C) 2006-2016 Eyeo GmbH 4 - Copyright (C) 2006-2016 Eyeo GmbH
5 - 5 -
6 - Adblock Plus is free software: you can redistribute it and/or modify 6 - Adblock Plus is free software: you can redistribute it and/or modify
7 - it under the terms of the GNU General Public License version 3 as 7 - it under the terms of the GNU General Public License version 3 as
8 - published by the Free Software Foundation. 8 - published by the Free Software Foundation.
9 - 9 -
10 - Adblock Plus is distributed in the hope that it will be useful, 10 - Adblock Plus is distributed in the hope that it will be useful,
(...skipping 199 matching lines...) Expand 10 before | Expand all | Expand 10 after
210 </div> 210 </div>
211 </div> 211 </div>
212 212
213 <!-- Advanced tab content --> 213 <!-- Advanced tab content -->
214 <div id="content-advanced" class="tab-content"> 214 <div id="content-advanced" class="tab-content">
215 <div> 215 <div>
216 <h1> 216 <h1>
217 <span class="i18n_options_tweaks_title"></span> 217 <span class="i18n_options_tweaks_title"></span>
218 <a class="i18n_options_readMore tooltip"></a> 218 <a class="i18n_options_readMore tooltip"></a>
219 </h1> 219 </h1>
220 <ul class="table"> 220 <ul id="tweaks" class="table">
221 <li> 221 <li data-pref="shouldShowBlockElementMenu">
222 <button role="checkbox" id="easylist"></button> 222 <button role="checkbox" data-action="toggle-pref"></button>
223 <span id="block-element-explanation" class="i18n_options_tweaks_ blockElement"></span> 223 <span class="i18n_options_tweaks_blockElement"></span>
224 </li>
225 <li data-pref="show_devtools_panel">
226 <button role="checkbox" data-action="toggle-pref"></button>
227 <span class="i18n_options_tweaks_showDevToolsPanel"></span>
228 </li>
229 <li data-pref="notifications_ignoredcategories">
230 <button role="checkbox" data-action="toggle-pref"></button>
231 <span class="i18n_options_tweaks_showNotifications"></span>
232 </li>
233 <li data-pref="safari_contentblocker">
234 <button role="checkbox" data-action="toggle-pref"></button>
235 <span class="i18n_options_tweaks_safariContentBlocker"></span>
224 </li> 236 </li>
225 </ul> 237 </ul>
226 </div> 238 </div>
239
227 <div> 240 <div>
228 <h1> 241 <h1>
229 <span class="i18n_options_filterList_title"></span> 242 <span class="i18n_options_filterList_title"></span>
230 <a class="i18n_options_readMore tooltip"></a> 243 <a class="i18n_options_readMore tooltip"></a>
231 </h1> 244 </h1>
232 <ul class="tabs horizontal"> 245 <ul class="tabs horizontal">
233 <li class="i18n_options_tab_overview active" data-action="switch-t ab" data-tab="advanced-allFilterLists"></li> 246 <li class="i18n_options_tab_overview active" data-action="switch-t ab" data-tab="advanced-allFilterLists"></li>
234 <li class="i18n_options_tab_ownList" data-action="switch-tab" data -tab="advanced-customFilters"></li> 247 <li class="i18n_options_tab_ownList" data-action="switch-tab" data -tab="advanced-customFilters"></li>
235 </ul> 248 </ul>
236 <div id="filter-lists"> 249 <div id="filter-lists">
(...skipping 160 matching lines...) Expand 10 before | Expand all | Expand 10 after
397 <div class="url"></div> 410 <div class="url"></div>
398 <button class="i18n_options_dialog_predefined_confirm default-focus" data-action="add-predefined-subscription"></button> 411 <button class="i18n_options_dialog_predefined_confirm default-focus" data-action="add-predefined-subscription"></button>
399 </div> 412 </div>
400 </div> 413 </div>
401 </div> 414 </div>
402 <!-- Placeholder element to determine when to wrap focus around --> 415 <!-- Placeholder element to determine when to wrap focus around -->
403 <span class="focus-last" tabindex="0"></span> 416 <span class="focus-last" tabindex="0"></span>
404 </div> 417 </div>
405 </body> 418 </body>
406 </html> 419 </html>
OLDNEW
« no previous file with comments | « messageResponder.js ('k') | options.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld