Blame view

public/hbs/plugin/dialog.hbs 785 Bytes
郝肖肖 authored
1
<div id="dialog-wrapper" class="dialog-wrapper">
郝肖肖 authored
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
    <div class="dialog-box {{hasClass}}">
        {{# hasHeader}}
            <div class="dialog-header">{{.}}</div>
        {{/ hasHeader}}
        <div class="dialog-content">{{{dialogText}}}</div>
        {{# hasFooter}}
            <div class="dialog-footer">
            {{# leftBtnText}}
                <span class="dialog-left-btn tap-hightlight">{{.}}</span>
            {{/ leftBtnText}}
            {{# centerBtnText}}
                <span class="dialog-center-btn tap-hightlight">{{.}}</span>
            {{/ centerBtnText}}
            {{# rightBtnText}}
                <span class="dialog-right-btn tap-hightlight">{{.}}</span>
            {{/ rightBtnText}}
            </div>
        {{/ hasFooter}}
沈志敏 authored
20
    </div>
郝肖肖 authored
21
</div>