paneleditor.html 681 B

1234567891011121314151617
  1. <div class="modal-header">
  2. <button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
  3. <h3>{{panel.title}} <small>editor</small></h3>
  4. </div>
  5. <div class="modal-body">
  6. <h4>General <small> panel settings</small></h4>
  7. <div ng-include src="'partials/panelgeneral.html'"></div>
  8. <h4 style="text-transform: capitalize;">{{panel.type}} <small> panel settings</small></h4>
  9. <div ng-include src="'panels/'+panel.type+'/editor.html'">No additional settings are available for this type of panel.</div>
  10. </div>
  11. <div class="modal-footer">
  12. <button type="button" class="btn btn-success" ng-click="dismiss();$broadcast('render')">Close</button>
  13. </div>