blob: 88e949291c3132e13b171a3686ae56509c21cfca (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
<!--
~ Copyright (C) 2018 AT&T Intellectual Property. All rights reserved.
~
~ Licensed under the Apache License, Version 2.0 (the "License");
~ you may not use this file except in compliance with the License.
~ You may obtain a copy of the License at
~
~ http://www.apache.org/licenses/LICENSE-2.0
~
~ Unless required by applicable law or agreed to in writing, software
~ distributed under the License is distributed on an "AS IS" BASIS,
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
~ See the License for the specific language governing permissions and
~ limitations under the License.
-->
<div data-ng-class="{'w-sdc-modal': type===undefined, 'w-sdc-classic-modal': type==='classic'}">
<div class="w-sdc-modal-head">
<span data-ng-if="header" class="w-sdc-modal-head-text">{{header}}</span>
<span data-ng-if="headerTranslate" class="w-sdc-modal-head-text" translate="{{headerTranslate}}" translate-values="{{headerTranslateValues}}"></span>
<div data-ng-if="showCloseButton==='true'" class="w-sdc-modal-close" data-ng-click="cancel()"></div>
</div>
<div class="w-sdc-modal-body" data-ng-class="{'classic': type==='classic'}">
<ng-transclude></ng-transclude>
</div>
<div class="w-sdc-modal-footer" data-ng-if="type==='classic' && buttons!==undefined">
<button data-ng-repeat="button in buttons"
data-tests-id="{{button.name}}"
class="tlv-btn {{button.css}}"
data-ng-class="{'disabled': button.disabled===true}"
data-ng-disabled="button.disabled===true"
data-ng-click="button.callback()">{{button.name}}</button>
</div>
</div>
|