Home
last modified time | relevance | path

Searched refs:textArea (Results 1 – 25 of 27) sorted by relevance

12

/plugin/crypto/js/
H A Ddecrypt-dialog.js1 function DecryptDialog(textArea) { argument
3 this.textArea = textArea;
17 this.div.style.top = (findPosY(textArea)+20)+'px';
18 this.div.style.left = (findPosX(textArea)+80)+'px';
20 this.textArea.form.parentNode.appendChild(this.div);
68 dialog.textArea.focus();
69 dialog.textArea.form.parentNode.removeChild(dialog.div);
72 dialog.textArea = null;
76 var selection = getSelection(dialog.textArea);
80 dialog.sack.setVar("data", getSelection(dialog.textArea).getText());
H A Dencrypt-dialog.js1 function EncryptDialog(textArea) { argument
3 this.textArea = textArea;
17 this.dialog.style.top = (findPosY(textArea)+20)+'px';
18 this.dialog.style.left = (findPosX(textArea)+80)+'px';
20 this.textArea.form.parentNode.appendChild(this.dialog);
85 dialog.textArea.focus();
86 dialog.textArea.form.parentNode.removeChild(dialog.dialog);
89 dialog.textArea = null;
93 var selection = getSelection(dialog.textArea);
/plugin/crypto/
H A Dscript.js4 var textArea = $('wiki__text');
5 if (textArea != null) {
6 new EncryptDialog(textArea);
13 var textArea = $('wiki__text');
14 if (textArea != null) {
15 new DecryptDialog(textArea);
/plugin/highlight2wiki/
H A Dscript.js60 var textArea = document.getElementById("edtop").contentWindow.document.getElementsByTagName("textarea")[0].value;
62 var lines = textArea.split('\n\n'); // lines is an array of strings
80 var textArea = document.getElementById("edtop").contentWindow.document.getElementsByTagName("textarea")[0].value;
82 var lines = textArea.split('\n\n'); // lines is an array of strings
134 var textArea = document.getElementById("edtop").contentWindow.document.getElementsByTagName("textarea")[0].value;
136 var lines = textArea.split('\n\n'); // lines is an array of strings
148 var textArea = document.getElementById("edtop").contentWindow.document.getElementsByTagName("textarea")[0].value;
150 var lines = textArea.split('\n\n'); // lines is an array of strings
185 var textArea = document.getElementById("edtop").contentWindow.document.getElementsByTagName("textarea")[0].value;
187 if(textArea
[all...]
/plugin/tfslink/scripts/
H A Daddworkitemlink_wiz.js13 textArea: null, property in addworkitemlink_wiz
50 addworkitemlink_wiz.textArea = $editor[0];
137 sel = DWgetSelection(addworkitemlink_wiz.textArea);
139 sel = getSelection(addworkitemlink_wiz.textArea);
164 addworkitemlink_wiz.selection = DWgetSelection(addworkitemlink_wiz.textArea);
166 addworkitemlink_wiz.selection = getSelection(addworkitemlink_wiz.textArea);
177 addworkitemlink_wiz.textArea.focus();
/plugin/indexmenu/scripts/
H A Dtoolbarindexwizard.js13 textArea: null, property in indexmenu_wiz
108 indexmenu_wiz.textArea = $editor[0];
276 sel = DWgetSelection(indexmenu_wiz.textArea);
278 sel = getSelection(indexmenu_wiz.textArea);
302 sel = DWgetSelection(indexmenu_wiz.textArea);
304 sel = getSelection(indexmenu_wiz.textArea);
322 indexmenu_wiz.selection = DWgetSelection(indexmenu_wiz.textArea);
324 indexmenu_wiz.selection = getSelection(indexmenu_wiz.textArea);
336 indexmenu_wiz.textArea.focus(); //pure js
/plugin/vimeo/
H A Dscript.js9 var textArea = document.createElement('textarea');
10 textArea.innerHTML = encodedIframe;
11 var iframeHtml = textArea.value;
/plugin/txt2tags/
H A Dlinkwiz.js12 textArea: null, property in dw_linkwiz
48 dw_linkwiz.textArea = $editor[0];
217 sel = DWgetSelection(dw_linkwiz.textArea);
235 if(dw_linkwiz.textArea.form.id.value.indexOf(':') != -1 &&
298 dw_linkwiz.selection = DWgetSelection(dw_linkwiz.textArea);
309 dw_linkwiz.textArea.focus();
/plugin/dyncontent/
H A Dscript.js27 textArea: null, property in dw_linkwiz_v2
63 dw_linkwiz_v2.textArea = $editor[0];
232 sel = DWgetSelection(dw_linkwiz_v2.textArea);
250 if(dw_linkwiz_v2.textArea.form.id.value.indexOf(':') != -1 &&
325 dw_linkwiz_v2.selection = DWgetSelection(dw_linkwiz_v2.textArea);
342 dw_linkwiz_v2.textArea.focus();
/plugin/ocr/
H A Dscript.js21 var textArea = document.getElementById("wiki__text").value;
22 document.getElementById("wiki__text").value = textArea.replace(img_text,img_text+"|"+ atext);
/plugin/bookcreator/script/
H A Dnspicker.js14 textArea: null, property in bc_nspicker
56 bc_nspicker.textArea = $editor[0];
240 bc_nspicker.selection = DWgetSelection(bc_nspicker.textArea);
257 bc_nspicker.textArea.focus();
/plugin/pycode/
H A Dscript.js14 textArea: null, property in pycode_wiz
132 pycode_wiz.textArea = $editor[0];
479 sel = DWgetSelection(pycode_wiz.textArea);
522 pycode_wiz.selection = DWgetSelection(pycode_wiz.textArea);
531 pycode_wiz.textArea.focus();
/plugin/xlsx2dw/
H A Dscript.js381 let textArea = jQuery('#wiki__text');
382 let cursorPosition = textArea[0].selectionStart || 0;
383 let sourceText = textArea.val();
384 textArea.val(
/plugin/etherpadlite/scripts/
H A Detherpadlite.js423 ep.proxyGetSelection = function(textArea) { argument
427 return ep.getSelection.apply(self, [textArea]);
439 ep.proxyDWgetSelection = function(textArea) { argument
443 return ep.DWgetSelection(textArea);
506 if(dw_linkwiz.textArea.form.id.value.indexOf(':') != -1 &&
/plugin/dokucrypt2/
H A Dscript.js2195 let textArea = document.createElement("textarea");
2196 textArea.value = textToCopy;
2198 textArea.style.position = "fixed";
2199 textArea.style.left = "-999999px";
2200 textArea.style.top = "-999999px";
2201 document.body.appendChild(textArea);
2202 textArea.focus();
2203 textArea.select();
2207 textArea.remove();
/plugin/wysiwyg/fckeditor/editor/dialog/fck_spellerpages/spellerpages/
H A DspellChecker.js38 this.textArea = textObject; // deprecated
/plugin/fckg/fckeditor/editor/dialog/fck_spellerpages/spellerpages/
H A DspellChecker.js38 this.textArea = textObject; // deprecated
/plugin/ckgdoku/ckeditor/plugins/link/dialogs/
H A Dlink.js1textArea:null,selected:null,$ck:null,init:function(b,a){var c=b.position();$ck=a;if(doku_linkwiz.$… property in doku_linkwiz
H A Dlink.js.unc1493 textArea: null,
1531 doku_linkwiz.textArea = $editor[0];
1759 doku_linkwiz.textArea.focus();
/plugin/ckgedit/ckeditor/plugins/link/dialogs/
H A Dlink-cmpr.js1textArea:null,selected:null,$ck:null,init:function(b,a){var c=b.position();$ck=a;if(doku_linkwiz.$… property in doku_linkwiz
H A Dlink.js1textArea:null,selected:null,$ck:null,init:function(b,a){var c=b.position();$ck=a;if(doku_linkwiz.$… property in doku_linkwiz
H A Dlink.js.unc1541 textArea: null,
1579 doku_linkwiz.textArea = $editor[0];
1818 doku_linkwiz.textArea.focus();
/plugin/fastwiki/
H A Dscript.js334 dw_linkwiz.textArea = $('#wiki__text')[0];
/plugin/diagramsnet/lib/js/diagramly/
H A DExtensions.js5929 function insertLabel(textArea, e, obj, src, trg) argument
5931 var x = (parseFloat(textArea.Location) - 0.5) * 2;
5933 if (isNaN(x) && textArea.Text != null && textArea.Text.Location != null)
5935 x = (parseFloat(textArea.Text.Location) - 0.5) * 2;
5938 var lblTxt = convertText(textArea);
5940 labelStyle + getEdgeLabelStyle(textArea, obj, isLastLblHTML));
5944 if (textArea.Side)
5974 …lab.geometry.offset = new mxPoint(Math.sign(obj.Endpoint1.y - obj.Endpoint2.y) * textArea.Side * (…
5978 …lab.geometry.offset = new mxPoint(0, Math.sign(obj.Endpoint2.x - obj.Endpoint1.x) * textArea.Side …
H A DEditorUi.js15067 var textArea = document.createElement('textarea');
15068 textArea.className = 'geCommentEditTxtArea';
15069 textArea.style.minHeight = commentTxt.offsetHeight + 'px';
15070 textArea.value = comment.content;
15071 cdiv.insertBefore(textArea, commentTxt);
15078 cdiv.removeChild(textArea);
15105 comment.content = textArea.value;
15113 mxEvent.addListener(textArea, 'keydown', mxUtils.bind(this, function(evt)
15139 textArea.focus();

12