summaryrefslogtreecommitdiff
path: root/public/javascripts/tiny_mce/plugins/paste/js/pastetext.js
diff options
context:
space:
mode:
authorerdgeist <erdgeist@erdgeist.org>2026-06-27 22:52:50 +0200
committererdgeist <erdgeist@erdgeist.org>2026-06-27 22:52:50 +0200
commit9a19a0494ef51cdac9a78e24d517ca48ba44c453 (patch)
tree8eaae12d8047a40e29d3ea7ff3116b5c869e04bd /public/javascripts/tiny_mce/plugins/paste/js/pastetext.js
parent85a01e35274b8d4d4165a7b26bd7986e211246bb (diff)
parent1853082fcd8c067390c246f9daa01a9b47387497 (diff)
Migration from Rails 2.3.5 to Rails 8.1 successful.
Merging dev branch.
Diffstat (limited to 'public/javascripts/tiny_mce/plugins/paste/js/pastetext.js')
-rw-r--r--public/javascripts/tiny_mce/plugins/paste/js/pastetext.js36
1 files changed, 0 insertions, 36 deletions
diff --git a/public/javascripts/tiny_mce/plugins/paste/js/pastetext.js b/public/javascripts/tiny_mce/plugins/paste/js/pastetext.js
deleted file mode 100644
index c524f9e..0000000
--- a/public/javascripts/tiny_mce/plugins/paste/js/pastetext.js
+++ /dev/null
@@ -1,36 +0,0 @@
1tinyMCEPopup.requireLangPack();
2
3var PasteTextDialog = {
4 init : function() {
5 this.resize();
6 },
7
8 insert : function() {
9 var h = tinyMCEPopup.dom.encode(document.getElementById('content').value), lines;
10
11 // Convert linebreaks into paragraphs
12 if (document.getElementById('linebreaks').checked) {
13 lines = h.split(/\r?\n/);
14 if (lines.length > 1) {
15 h = '';
16 tinymce.each(lines, function(row) {
17 h += '<p>' + row + '</p>';
18 });
19 }
20 }
21
22 tinyMCEPopup.editor.execCommand('mceInsertClipboardContent', false, {content : h});
23 tinyMCEPopup.close();
24 },
25
26 resize : function() {
27 var vp = tinyMCEPopup.dom.getViewPort(window), el;
28
29 el = document.getElementById('content');
30
31 el.style.width = (vp.w - 20) + 'px';
32 el.style.height = (vp.h - 90) + 'px';
33 }
34};
35
36tinyMCEPopup.onInit.add(PasteTextDialog.init, PasteTextDialog);