1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
ash / webui / scanning / resources / resolution_select.html [blame]
<style include="scanning-shared"></style>
<scan-settings-section>
<span id="resolutionLabel" slot="label" aria-hidden="true">
[[i18n('resolutionDropdownLabel')]]
</span>
<div slot="settings">
<select id="resolutionSelect" class="md-select"
value="{{selectedOption::change}}" disabled="[[disabled]]"
aria-labelledby="resolutionLabel">
<template is="dom-repeat" items="[[options]]" as="resolution">
<option value="[[resolution]]"
selected$="[[isDefaultOption(resolution)]]">
[[getResolutionString(resolution)]]
</option>
</template>
</select>
</div>
</scan-settings-section>