modal.html 880 B

1234567891011121314151617181920212223
  1. <div class="modal fade" tabindex="-1" ng-attr-data-backdrop="{{ closeable == 'yes' ? true : 'static' }}" ng-attr-data-keyboard="{{ closeable == 'yes' ? true : false }}">
  2. <!--
  3. // Copyright (C) 2014 The Syncthing Authors.
  4. //
  5. // This Source Code Form is subject to the terms of the Mozilla Public
  6. // License, v. 2.0. If a copy of the MPL was not distributed with this file,
  7. // You can obtain one at https://mozilla.org/MPL/2.0/.
  8. -->
  9. <div class="modal-dialog {{ large == 'yes' ? 'modal-lg' : '' }}">
  10. <div class="modal-content">
  11. <div class="modal-header {{status == 'default' ? '' : 'alert alert-'+status }}">
  12. <h4 class="modal-title">
  13. <div ng-if="icon" class="panel-icon">
  14. <span class="{{icon}}"></span>
  15. </div>
  16. {{heading}}
  17. </h4>
  18. </div>
  19. <div ng-transclude></div>
  20. </div>
  21. </div>
  22. </div>