| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- <div class="page-header">
- <h2>{{'options_tab_ui' | tr}}</h2>
- </div>
- <section class="settings-group">
- <h3>{{'options_group_miscOptions' | tr}}</h3>
- <div class="checkbox">
- <label>
- <input type="checkbox" ng-model="options["-confirmDeletion"]"/><span>{{'options_confirmDeletion' | tr}}</span>
- </label>
- </div>
- <div class="checkbox">
- <label>
- <input id="refresh-on-profile-change" type="checkbox" ng-model="options["-refreshOnProfileChange"]"/><span>{{'options_refreshOnProfileChange' | tr}}</span>
- </label>
- </div>
- <div class="checkbox">
- <label>
- <input type="checkbox" ng-model="options["-showInspectMenu"]"/><span>{{'options_showInspectMenu' | tr}}</span>
- </label>
- </div>
- <div class="checkbox">
- <label>
- <input type="checkbox" ng-model="options["-addConditionsToBottom"]"/><span>{{'options_addConditionsToBottom' | tr}}</span>
- </label>
- </div>
- </section>
- <section class="settings-group">
- <h3>{{'options_group_keyboardShortcut' | tr}}</h3>
- <p>
- <button type="button" role="button" ng-click="openShortcutConfig()" class="btn btn-default"><span class="glyphicon glyphicon-share-alt"></span> {{'options_menuShortcutConfigure' | tr}}
- </button> {{'options_menuShortcutHelp' | tr}}
- </p>
- <p class="help-block">{{'options_menuShortcutMore' | tr}}</p>
- </section>
- <section class="settings-group">
- <h3>{{'options_group_switchOptions' | tr}}</h3>
- <div class="form-group">
- <label>{{'options_startupProfile' | tr}}</label>
- <div omega-profile-select="options | profiles:"all"" ng-model="options["-startupProfileName"]" default-text="{{'options_startupProfile_none' | tr}}" disp-name="dispNameFilter" style="display: inline-block;" options="options"></div>
- </div>
- <div class="checkbox">
- <label>
- <input type="checkbox" ng-model="options["-showConditionTypes"]" ng-true-value="1" ng-false-value="0"/><span>{{'options_showConditionTypesAdvanced' | tr}}</span>
- </label>
- <p class="help-block">{{'options_showConditionTypesAdvancedHelp' | tr}}</p>
- </div>
- <div class="checkbox">
- <label>
- <input type="checkbox" ng-model="options["-enableQuickSwitch"]"/><span>{{'options_quickSwitch' | tr}}</span>
- </label>
- </div>
- <div id="quick-switch-settings" ng-show="options["-enableQuickSwitch"]" ng-controller="QuickSwitchCtrl" class="settings-group">
- <h4>{{'options_cycledProfiles' | tr}}</h4>
- <p class="help-block">{{'options_cycledProfilesHelp' | tr}}</p>
- <div ng-show="options["-quickSwitchProfiles"].length < 2" class="has-error">
- <p class="help-block">{{'options_cycledProfilesTooFew' | tr}}</p>
- </div>
- <ul ui-sortable="sortableOptions" ng-model="options["-quickSwitchProfiles"]" class="cycle-profile-container cycle-enabled">
- <li ng-repeat="name in options["-quickSwitchProfiles"]"><span omega-profile-inline="profileByName(name)" options="options" disp-name="dispNameFilter"></span></li>
- </ul>
- <h4>{{'options_notCycledProfiles' | tr}}</h4>
- <ul ui-sortable="sortableOptions" ng-model="notCycledProfiles" class="cycle-profile-container">
- <li ng-repeat="name in notCycledProfiles" class="bg-success"><span omega-profile-inline="profileByName(name)" options="options" disp-name="dispNameFilter"></span></li>
- </ul>
- </div>
- </section>
|