imExportNode.tpl.html 563 B

12345678910111213141516
  1. <div class="modal-header">
  2. <h3 class="modal-title">{{ title }}</h3>
  3. </div>
  4. <div class="modal-body">
  5. <textarea type="text"
  6. class="form-control single-input"
  7. rows="8"
  8. ng-keydown="shortCut($event);"
  9. ng-model="value"
  10. ng-readonly="type === 'export'">
  11. </textarea>
  12. </div>
  13. <div class="modal-footer">
  14. <button class="btn btn-primary" ng-click="ok()" ng-disabled="type === 'import' && value == ''">OK</button>
  15. <button class="btn btn-warning" ng-click="cancel()">Cancel</button>
  16. </div>