mirror of
https://github.com/johannesjo/super-productivity.git
synced 2026-08-01 12:10:33 +00:00
14 lines
404 B
HTML
14 lines
404 B
HTML
<form ng-if="vm.showEdit"
|
|
class="edit-on-click-form"
|
|
ng-submit="vm.finishEdit();"
|
|
md-whiteframe="3">
|
|
<input type="text"
|
|
ng-model="vm.modelCopy"
|
|
ng-model-options="{ debounce: 30 }"
|
|
ng-blur="vm.finishEdit();"
|
|
tabindex="2">
|
|
</form>
|
|
<div class="text edit-on-click-text"
|
|
tabindex="2"
|
|
ng-click="vm.toggleShowEdit()">{{ vm.editOnClick }}
|
|
</div>
|