Sha256: 8a687d69b3effd6f33d943a3e49dbfb7d74f728d02888621770a4158afc637a5
Contents?: true
Size: 1.01 KB
Versions: 3
Compression:
Stored size: 1.01 KB
Contents
<!doctype html> <html> <head> <meta charset="utf-8" /> <title>PlainPaste</title> <style type="text/css" rel="stylesheet"> body { margin: 0; font:12px/1 "sans serif",tahoma,verdana,helvetica; background-color:#F0F0EE; color:#333; text-align:center; } #textArea { width:98%; height:260px; border:1px solid #A5A5A5; overflow: auto; resize: none; } #textArea:focus { outline: none; } .comment { margin-bottom: 10px; text-align: left; } </style> <script type="text/javascript"> var KE = parent.KindEditor; var id = KE.util.getParam(location.href, 'id'); KE.event.ready(function() { var textarea = KE.$('textArea', document); KE.util.pluginLang('plainpaste', document); KE.util.hideLoadingPage(id); textarea.focus(); }, window, document); </script> </head> <body> <div class="comment"><span id="lang.comment"></span></div> <textarea id="textArea"></textarea> </body> </html>
Version data entries
3 entries across 3 versions & 1 rubygems