-
Notifications
You must be signed in to change notification settings - Fork 0
/
number_input_dialog.tmpl.html
28 lines (28 loc) · 1.04 KB
/
number_input_dialog.tmpl.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<md-dialog ng-attr-aria-label="{{ ariaLabel }}">
<form ng-cloak="ng-cloak"
ng-submit="answer(value)">
<md-dialog-content>
<div class="md-dialog-content">
<h2 class="md-title">{{ title }}</h2>
<md-input-container flex="100"
md-no-float="">
<input type="number"
ng-model="value"
required="required"
ng-attr-placeholder="{{ placeholder }}"
ng-attr-step="{{ step }}" />
</md-input-container>
</div>
</md-dialog-content>
<md-dialog-actions layout="row">
<md-button class="md-button md-primary"
ng-click="close()">
{{ cancel }}
</md-button>
<md-button type="submit"
class="md-button md-primary">
{{ ok }}
</md-button>
</md-dialog-actions>
</form>
</md-dialog>