Sha256: e7fa2825c5e79b018b774266c888c488b4bb9e313285405c337a2c76ae2b6275

Contents?: true

Size: 895 Bytes

Versions: 3

Compression:

Stored size: 895 Bytes

Contents

<!DOCTYPE html>
<html>
<head>
    <title>表格删除提示</title>
    <script type="text/javascript" src="../internal.js"></script>
    <style type="text/css">
        .section {
            width: 200px;
            margin: 10px auto 0;
            font-size: 14px;
        }

        .item {
            text-align: center;
        }
    </style>
</head>
<body>
<div class="section">
    <div class="item">
        <label><input type="radio" id="J_delRow" name="cmd" checked/><var id="lang_delRow"></var></label>
    </div>
    <div class="item">
        <label><input type="radio" id="J_delCol" name="cmd"/><var id="lang_delCol"></var></label>
    </div>
</div>
<script type="text/javascript">
    dialog.onok = function () {
        $G("J_delRow").checked ? editor.execCommand("deleterow") : editor.execCommand("deletecol");
    };
</script>
</body>
</html>

Version data entries

3 entries across 3 versions & 2 rubygems

Version Path
rails_ueditor-0.2.0 vendor/assets/javascripts/ueditor/dialogs/table/edittip.html
ueditor.rails-0.0.3 vendor/assets/javascripts/ueditor/dialogs/table/edittip.html
ueditor.rails-0.0.2 vendor/assets/javascripts/ueditor/dialogs/table/edittip.html