Files
habitica/website/views/shared/modals/task-notes.jade
T
Keith Holliday 93befcebcc Tasks score notes (#8507)
* Added setting and modal for score notes

* Added persistent score notes

* Fixed linting issues and documented new field

* Added max length to task score notes

* Added check for score notes existence

* Combined tasks perferences
2017-02-27 14:56:34 -07:00

11 lines
319 B
Plaintext

script(id='modals/task-notes.html', type='text/ng-template')
.modal-header
h4 Task Notes
.modal-body
textarea.form-control(ng-model="task.scoreNotes", row="10")
.modal-footer
.btn.btn-default(ng-click='$close()')=env.t('cancel')
.btn.btn-primary(ng-click="$close(task)")=env.t('save')