OLD | NEW |
1 <div id="settings" class="page" hidden> | 1 <div id="settings" class="page" hidden> |
2 <header> | 2 <header> |
3 <h1 i18n-content="settingsTitle"></h1> | 3 <h1 i18n-content="settingsTitle"></h1> |
4 </header> | 4 </header> |
5 <if expr="not pp_ifdef('chromeos')"> | 5 <if expr="not pp_ifdef('chromeos')"> |
6 <include src="sync_section.html"> | 6 <include src="sync_section.html"> |
7 </if> | 7 </if> |
8 <if expr="pp_ifdef('chromeos')"> | 8 <if expr="pp_ifdef('chromeos')"> |
9 <section> | 9 <section> |
10 <h3 i18n-content="sectionTitleInternet"></h3> | 10 <h3 i18n-content="sectionTitleInternet"></h3> |
(...skipping 729 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
740 </div> | 740 </div> |
741 <div class="option-name" id="accessibility-tap-dragging"> | 741 <div class="option-name" id="accessibility-tap-dragging"> |
742 <div class="checkbox"> | 742 <div class="checkbox"> |
743 <label> | 743 <label> |
744 <input id="accessibility-tap-dragging-check" | 744 <input id="accessibility-tap-dragging-check" |
745 pref="settings.touchpad.enable_tap_dragging" type="checkbox"> | 745 pref="settings.touchpad.enable_tap_dragging" type="checkbox"> |
746 <span i18n-content="accessibilityTapDragging"></span> | 746 <span i18n-content="accessibilityTapDragging"></span> |
747 </label> | 747 </label> |
748 </div> | 748 </div> |
749 </div> | 749 </div> |
| 750 <div class="setting-row option-name" id="accessibility-autoclick" hidden> |
| 751 <div class="checkbox"> |
| 752 <input id="accessibility-autoclick-check" |
| 753 pref="settings.a11y.autoclick" type="checkbox"> |
| 754 </div> |
| 755 <div id="accessibility-autoclick-subrow"> |
| 756 <div> |
| 757 <label for="accessibility-autoclick-check" |
| 758 i18n-content="accessibilityAutoclick"> |
| 759 </label> |
| 760 <span class="controlled-setting-indicator" |
| 761 pref="settings.a11y.autoclick"> |
| 762 </span> |
| 763 </div> |
| 764 <div> |
| 765 <label class="option-name" for="accessibility-autoclick-dropdown" |
| 766 i18n-content="accessibilityAutoclickDropdown"> |
| 767 </label> |
| 768 <select id="accessibility-autoclick-dropdown" class="control" |
| 769 data-type="number" |
| 770 pref="settings.a11y.autoclick_delay_ms"> |
| 771 <option value="200" |
| 772 i18n-content="autoclickDelayExtremelyShort"></option> |
| 773 <option value="400" |
| 774 i18n-content="autoclickDelayVeryShort"></option> |
| 775 <option value="600" i18n-content="autoclickDelayShort"></option> |
| 776 <option value="800" i18n-content="autoclickDelayLong"></option> |
| 777 <option value="1000" |
| 778 i18n-content="autoclickDelayVeryLong"></option> |
| 779 </select> |
| 780 <span class="controlled-setting-indicator" |
| 781 pref="settings.a11y.autoclick_delay_ms"> |
| 782 </span> |
| 783 </div> |
| 784 </div> |
| 785 </div> |
750 </section> | 786 </section> |
751 <if expr="pp_ifdef('chromeos')"> | 787 <if expr="pp_ifdef('chromeos')"> |
752 <section id="factory-reset-section" hidden> | 788 <section id="factory-reset-section" hidden> |
753 <h3 i18n-content="factoryResetTitle"></h3> | 789 <h3 i18n-content="factoryResetTitle"></h3> |
754 <div> | 790 <div> |
755 <span class="settings-row" i18n-content="factoryResetDescription"> | 791 <span class="settings-row" i18n-content="factoryResetDescription"> |
756 </span> | 792 </span> |
757 <button id="factory-reset-restart" | 793 <button id="factory-reset-restart" |
758 i18n-content="factoryResetRestart"> | 794 i18n-content="factoryResetRestart"> |
759 </button> | 795 </button> |
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
806 </div> | 842 </div> |
807 </section> | 843 </section> |
808 </div> <!-- advanced-settings-container --> | 844 </div> <!-- advanced-settings-container --> |
809 </div> <!-- advanced-settings --> | 845 </div> <!-- advanced-settings --> |
810 <footer> | 846 <footer> |
811 <button id="advanced-settings-expander" class="link-button" | 847 <button id="advanced-settings-expander" class="link-button" |
812 i18n-content="showAdvancedSettings"> | 848 i18n-content="showAdvancedSettings"> |
813 </button> | 849 </button> |
814 </footer> | 850 </footer> |
815 </div> | 851 </div> |
OLD | NEW |