edit_json.html 624 B

12345678910111213141516171819
  1. <div ng-controller="JsonEditorCtrl">
  2. <div class="dashboard-editor-header">
  3. <div class="dashboard-editor-title">
  4. <i class="icon icon-edit"></i>
  5. JSON
  6. </div>
  7. </div>
  8. <div class="dashboard-editor-body" style="height: 500px">
  9. <textarea ng-model="json" rows="20" spellcheck="false" style="width: 90%; color: white"></textarea>
  10. </div>
  11. <div class="dashboard-editor-footer">
  12. <button type="button" class="btn btn-success pull-left" ng-show="canUpdate" ng-click="update(); dismiss();">Update</button>
  13. <button type="button" class="btn btn-success pull-right" ng-click="dismiss();">Close</button>
  14. </div>
  15. </div>