show-text-modal.html 794 字节
Newer Older
L
abtest  
lepdou 已提交
1 2 3 4 5 6 7
<div id="showTextModal" class="modal fade" tabindex="-1" role="dialog">
    <div class="modal-dialog">
        <div class="modal-content no-radius">
            <div class="modal-header panel-primary">
                <button type="button" class="close" data-dismiss="modal" aria-label="Close"><span
                        aria-hidden="true">&times;</span></button>

8
                <h4 class="modal-title">{{'Component.ShowText.Title' | translate }}</h4>
L
abtest  
lepdou 已提交
9
            </div>
10
            <pre class="modal-body no-radius" style="margin-bottom: 0" ng-show="!jsonObject" ng-bind="text">
11
            </pre>
12 13
            <pre class="modal-body no-radius" style="margin-bottom: 0" ng-show="jsonObject"
                ng-bind="jsonObject | json:4">
L
abtest  
lepdou 已提交
14 15 16
            </pre>
        </div>
    </div>
17
</div>