copay/public/views/includes/note.html

14 lines
573 B
HTML
Raw Normal View History

<div class="columns m20t">
<label class="size-14 text-center">
2016-06-07 13:22:20 -07:00
<span ng-show="!comment" translate>Add comment</span>
<span ng-show="comment" translate>Edit comment</span>
</label>
2016-06-04 13:47:58 -07:00
<input type="text" ng-model="data.comment" autofocus>
</div>
<div class="small-6 columns">
2016-06-08 06:19:39 -07:00
<button class="round outline dark-gray expand" ng-click="commentPopupClose()" translate>Cancel</button>
</div>
<div class="small-6 columns">
2016-06-08 06:19:39 -07:00
<button ng-style="{'background-color': index.backgroundColor}" class="round outline expand" ng-click="commentPopupSave()" translate>Save</button>
</div>