Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(436)

Side by Side Diff: chrome/browser/resources/print_preview/settings/other_options_settings.html

Issue 2576233003: Print Preview: Simplify other_options_settings javascript code. (Closed)
Patch Set: fix indent Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | chrome/browser/resources/print_preview/settings/other_options_settings.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 <div id="other-options-settings" 1 <div id="other-options-settings"
2 class="other-options-settings two-column" hidden> 2 class="other-options-settings two-column" hidden>
3 <div class="left-column"> 3 <div class="left-column">
4 <h1 i18n-content="optionsLabel"></h1> 4 <h1>$i18n{optionsLabel}</h1>
5 </div> 5 </div>
6 <div class="right-column checkbox"> 6 <div class="right-column checkbox">
7 <div id="other-options-collapsible" class="collapsible"> 7 <div id="other-options-collapsible" class="collapsible">
8 <div class="header-footer-container checkbox"> 8 <div id="header-footer-container">
9 <label aria-live="polite"> 9 <label aria-live="polite">
10 <input class="header-footer-checkbox" type="checkbox"> 10 <input class="checkbox" type="checkbox">
11 <span i18n-content="optionHeaderFooter"></span> 11 <span>$i18n{optionHeaderFooter}</span>
12 </label> 12 </label>
13 </div> 13 </div>
14 <div class="fit-to-page-container checkbox"> 14 <div id="fit-to-page-container">
15 <label aria-live="polite"> 15 <label aria-live="polite">
16 <input class="fit-to-page-checkbox" type="checkbox"> 16 <input class="checkbox" type="checkbox">
17 <span i18n-content="optionFitToPage"></span> 17 <span>$i18n{optionFitToPage}</span>
18 </label> 18 </label>
19 </div> 19 </div>
20 <div class="duplex-container checkbox"> 20 <div id="duplex-container">
21 <label aria-live="polite"> 21 <label aria-live="polite">
22 <input class="duplex-checkbox" type="checkbox"> 22 <input class="checkbox" type="checkbox">
23 <span i18n-content="optionTwoSided"></span> 23 <span>$i18n{optionTwoSided}</span>
24 </label> 24 </label>
25 </div> 25 </div>
26 <div class="css-background-container checkbox"> 26 <div id="css-background-container">
27 <label aria-live="polite"> 27 <label aria-live="polite">
28 <input class="css-background-checkbox" type="checkbox"> 28 <input class="checkbox" type="checkbox">
29 <span i18n-content="optionBackgroundColorsAndImages"></span> 29 <span>$i18n{optionBackgroundColorsAndImages}</span>
30 </label> 30 </label>
31 </div> 31 </div>
32 <div class="selection-only-container checkbox"> 32 <div id="selection-only-container">
33 <label aria-live="polite"> 33 <label aria-live="polite">
34 <input class="selection-only-checkbox" type="checkbox"> 34 <input class="checkbox" type="checkbox">
35 <span i18n-content="optionSelectionOnly"></span> 35 <span>$i18n{optionSelectionOnly}</span>
36 </label> 36 </label>
37 </div> 37 </div>
38 </div> 38 </div>
39 </div> 39 </div>
40 </div> 40 </div>
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/resources/print_preview/settings/other_options_settings.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698