Sha256: e304d9e84dad59873c5aada0b7f24b06c1c70ea37944fbd06a33ed33001db52c
Contents?: true
Size: 821 Bytes
Versions: 2
Compression:
Stored size: 821 Bytes
Contents
<!DOCTYPE html> <html> <head> <title>表格删除提示</title> <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> <%= javascript_include_tag 'ueditor/dialogs/internal.js' %> <script type="text/javascript"> dialog.onok = function () { $G("J_delRow").checked ? editor.execCommand("deleterow") : editor.execCommand("deletecol"); }; </script> </body> </html>
Version data entries
2 entries across 2 versions & 2 rubygems
Version | Path |
---|---|
ueditor_rails4-0.0.5 | vendor/assets/javascripts/ueditor/dialogs/table/edittip.html.erb |
ueditor_rails-0.0.4 | vendor/assets/javascripts/ueditor/dialogs/table/edittip.html.erb |