syncthing/gui/default/modal.html

23 lines
885 B
HTML
Raw Normal View History

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