
Put back the form for selecting the numbers of instances. It will be later replaced with angular machinery. A the moment there is no way to update plan parameters on submit. Change-Id: I5bd345f38b1f630c384858f405d767e0003d3354
18 lines
503 B
HTML
18 lines
503 B
HTML
<div class="number_picker unselectable">
|
|
<a
|
|
ng-click="decrementValue()"
|
|
class="arrow-left"
|
|
ng-class="{disabled: disabledInput || disableArrow()}"
|
|
>
|
|
<i ng-hide="disabledInput" class="glyphicon glyphicon-chevron-left"></i>
|
|
</a>
|
|
<input type="text" value="{$value$}" ng-model="value">
|
|
<a
|
|
ng-click="incrementValue()"
|
|
class="arrow-right"
|
|
ng-class="{disabled: disabledInput}"
|
|
>
|
|
<i ng-hide="disabledInput" class="glyphicon glyphicon-chevron-right"></i>
|
|
</a>
|
|
</div>
|