| /plugin/edittable/script/ |
| D | contextmenu.js | 14 edittable.cellArray = function (selection) { argument 16 … for (var currentRow = selection.start.row; currentRow <= selection.end.row; currentRow += 1) { 17 … for (var currentCol = selection.start.col; currentCol <= selection.end.col; currentCol += 1) { 36 callback: function (key, selection) { argument 38 jQuery.each(edittable.cellArray(selection), function (index, cell) { 53 callback: function (key, selection) { argument 55 jQuery.each(edittable.cellArray(selection), function (index, cell) { 64 var selection = this.getSelected(); 65 var row = selection[0]; 66 var col = selection[1]; [all …]
|
| /plugin/ckgedit/ckeditor/plugins/tableselection/styles/ |
| D | tableselection.css | 1 .cke_table-faked-selection-editor *::selection, table[data-cke-table-faked-selection-table] *::sele… 5 .cke_table-faked-selection { 9 .cke_table-faked-selection a { 12 .cke_editable:focus .cke_table-faked-selection { 13 /* We have to use !important here, as td might specify it's own background, thus table selection 18 .cke_editable:focus .cke_table-faked-selection a { 21 .cke_table-faked-selection::-moz-selection, .cke_table-faked-selection ::-moz-selection { 24 .cke_table-faked-selection::selection, .cke_table-faked-selection ::selection {
|
| /plugin/ckgdoku/ckeditor/plugins/tableselection/styles/ |
| D | tableselection.css | 1 .cke_table-faked-selection-editor *::selection, table.cke_table-faked-selection-table *::selection { 5 .cke_table-faked-selection-editor { 7 It will force repaint (without reflow) so that selection is properly displayed. */ 11 .cke_table-faked-selection { 15 .cke_table-faked-selection a { 18 .cke_editable:focus .cke_table-faked-selection { 19 /* We have to use !important here, as td might specify it's own background, thus table selection 24 .cke_editable:focus .cke_table-faked-selection a { 27 .cke_table-faked-selection::-moz-selection, .cke_table-faked-selection ::-moz-selection { 30 .cke_table-faked-selection::selection, .cke_table-faked-selection ::selection {
|
| /plugin/diagrams/script/ |
| H A D | embed-toolbar.js | 14 const selection = DWgetSelection(area); 21 selection.end = selection.start; 24 const start = area.value.lastIndexOf(open, selection.start); 25 const end = area.value.indexOf(close, selection.end); 28 const prev = area.value.lastIndexOf(close, selection.start - close.length); 29 const next = area.value.indexOf(open, selection.start + open.length); 32 if (start < min) return selection; 33 if (prev > -1 && prev > min && start < prev) return selection; 34 if (end > max) return selection; 35 if (next > -1 && next < end && end > next) return selection; [all …]
|
| /plugin/commentsyntax/ |
| D | script.js | 12 var selection = DWgetSelection(document.getElementById('wiki__text')); 13 if (selection.getLength()) { 14 comment = selection.getText(); 15 prevchar = selection.obj.value.substring(selection.start-1,selection.start); 16 nextchar = selection.obj.value.substring(selection.end,selection.end+1); 35 pasteText(selection, comment); 53 pasteText(selection, comment);
|
| /plugin/wysiwyg/fckeditor/editor/_source/internals/ |
| D | fckselection_ie.js | 31 var ieType = FCK.EditorDocument.selection.type ; 35 if ( FCK.EditorDocument.selection.createRange().parentElement ) 52 var oRange = FCK.EditorDocument.selection.createRange() ; 55 return FCK.EditorDocument.selection.createRange().item(0) ; 72 return FCK.EditorDocument.selection.createRange().parentElement() ; 90 var range = doc.selection.createRange() ; 104 FCK.EditorDocument.selection.empty() ; 127 var oRange = FCK.EditorDocument.selection.createRange() ; 138 if ( FCK.EditorDocument.selection.type == "Control" ) 144 var oRange = FCK.EditorDocument.selection.createRange() ; [all …]
|
| D | fckselection_gecko.js | 56 var selection = !!FCK.EditorWindow && FCK.EditorWindow.getSelection() ; 58 if ( selection && selection.anchorNode && selection.anchorNode.nodeType == 1 ) 61 selectedElement = selection.anchorNode.childNodes[ selection.anchorOffset ] ; 69 selectedElement = selection.anchorNode ;
|
| /plugin/grensladawritezor/fckeditor/editor/_source/internals/ |
| D | fckselection_ie.js | 27 return FCK.EditorDocument.selection.type ; 36 var oRange = FCK.EditorDocument.selection.createRange() ; 39 return FCK.EditorDocument.selection.createRange().item(0) ; 52 return FCK.EditorDocument.selection.createRange().parentElement() ; 59 FCK.EditorDocument.selection.empty() ; 82 var oRange = FCK.EditorDocument.selection.createRange() ; 93 if ( FCK.EditorDocument.selection.type == "Control" ) 99 var oRange = FCK.EditorDocument.selection.createRange() ; 120 if ( FCK.EditorDocument.selection.type == "Control" ) 122 oRange = FCK.EditorDocument.selection.createRange() ; [all …]
|
| /plugin/toolbox/ |
| D | ToolboxTextTools.js | 19 var selection = DWgetSelection(textarea); 20 if (!selection.getLength()) { 25 var text = selection.getText(); 31 pasteText(selection, text, {}); 41 var selection = DWgetSelection(textarea); 42 if (!selection.getLength()) { 47 var text = selection.getText(); 58 pasteText(selection, text, {});
|
| /plugin/bookcreator/action/ |
| D | handleselection.php | 92 $selection = json_decode($INPUT->post->str('selection', '', true), true); 93 if(!is_array($selection)) { 94 $selection = array(); 96 return $selection; 102 * @param array $selection 105 private function retrievePageInfo($selection) { argument 107 foreach($selection as $pageid) { 164 * @param array $selection 168 private function saveSelection($savedSelectionName, $selection) { argument 172 if(empty($selection)) { [all …]
|
| /plugin/imagemapping/ |
| D | ImageMappingEditor.js | 14 selection = null; field in ImageMappingEditor 31 constructor(selection) { argument 32 this.selection = selection; 45 const area = this.selection.obj; // the editor text area 68 this.selection.start = img.start - 2; 69 this.selection.end = img.end + 2; 83 this.selection.start = link.start; 84 this.selection.end = link.end; 99 DWsetSelection(this.selection); 116 const area = this.selection.obj; // the editor text area [all …]
|
| /plugin/issuetracker/ |
| D | xsEditor.js | 8 if (document.selection) 11 var sel = document.selection.createRange(); 39 { if (document.selection) 41 var sel = document.selection.createRange(); 65 if (document.selection) 67 var sel = document.selection.createRange(); 92 if (document.selection) 95 var sel = document.selection.createRange();
|
| D | wysiwyg_editor.js | 25 } else if (typeof document.selection != "undefined") { 26 if (document.selection.type == "Text") { 27 html = document.selection.createRange().htmlText; 55 } else if (typeof document.selection != "undefined") { 56 if (document.selection.type == "Text") { 57 html = document.selection.createRange().htmlText;
|
| /plugin/behave/ |
| D | behave.js | 176 } else if (document.selection) { 179 rangeDupe = document.selection.createRange().duplicate(), 204 selection: function(){ 218 range = document.selection.createRange(); 378 var selection = utils.cursor.selection(), 382 if(selection){ 384 var tempStart = selection.start; 387 selection.start = tempStart + 1; 392 var toIndent = val.substring(selection.start, selection.end), 404 … utils.editor.set( val.substring(0,selection.start) + toIndent + val.substring(selection.end) ); [all …]
|
| /plugin/translatebutton/ |
| D | translatebutton.js | 9 var selection = getSelection($(edid)); 10 if(selection.getLength()){ 11 sample = selection.getText();
|
| /plugin/jquery-syntax/jquery-syntax/ |
| D | jquery.syntax.layout.editor.js | 21 …ngth;}else if(typeof document.selection!="undefined"&&document.selection.type!="Control"){var text… 24 ….prototype.getClientState=function(){var state={};var selection=window.getSelection();if(selection… 25 state.range=selection.getRangeAt(0);if(state.range){state.startOffset=Syntax.Editor.getCharacterOff… 26 …[0][0],state.startOffset-nodes[0][1]);var selection=window.getSelection();selection.removeAllRange…
|
| /plugin/shibbolethauth/ |
| D | style.css | 65 #shibboleth__manager tr.protected .selection { 72 #shibboleth__manager .selection { 78 #shibboleth__manager .selection label { 85 * html #shibboleth__manager .selection label { 89 #shibboleth__manager .selection input.checkbox {
|
| /plugin/wysiwyg/fckeditor/editor/_source/classes/ |
| D | fckdomrange_ie.js | 32 var oSel = this.Window.document.selection ; 151 this.Window.document.selection.clear() ; 169 var selection = doc.selection ; 178 oRange = selection.createRange() ;
|
| /plugin/syntaxhighlightjs/static/lib/highlightjs/styles/ |
| D | hybrid.min.css | 1 …;background:#1d1f21}.hljs::selection,.hljs span::selection{background:#373b41}.hljs::-moz-selectio…
|
| /plugin/markdownextra/lib/meltdown/js/ |
| D | jquery.meltdown.js | 31 var text, selection, before, placeholder, after, lineStart, lineEnd, charBefore, charAfter; 37 selection = thees.getSelection(); 39 lineStart = text.lastIndexOf('\n', selection.start) + 1; 40 lineEnd = text.indexOf('\n', selection.end); 45 selection = thees.getSelection(); 47 if(selection.length > 0) { 48 placeholder = selection.text; 52 charBefore = text.charAt(selection.start - 1 - i); 53 charAfter = text.charAt(selection.end + i); 62 if (selection.text !== placeholder) {
|
| /plugin/doxycode/scripts/ |
| D | tagselector.js | 44 selection: null, // the old text selection in the edit textArea property 521 pasteText(doxycode_tagselector.selection,doxycode_string,{}); 524 doxycode_tagselector.doxycodeSelected = doxycode_tagselector.selection; 578 …var selectionStartLine = text.substring(0, doxycode_tagselector.selection.start).lastIndexOf('\n')… 579 var selectionEndLine = text.indexOf('\n', doxycode_tagselector.selection.start); 591 doxycode_tagselector.doxycodeSelected.obj = doxycode_tagselector.selection.obj; 602 var textBeforeCursor = text.substring(0, doxycode_tagselector.selection.start); 603 var textAfterCursor = text.substring(doxycode_tagselector.selection.start); 632 firstClosingTagIndex = match.index + doxycode_tagselector.selection.start; 640 … && (firstClosingTagIndex === -1 || firstClosingTagIndex > doxycode_tagselector.selection.start)) { [all …]
|
| /plugin/crypto/js/ |
| D | encrypt-dialog.js | 93 var selection = getSelection(dialog.textArea); 94 var text = selection.getText(); 98 dialog.sack.setVar("data", escape(selection.getText())); 100 pasteText(selection, dialog.sack.response);
|
| /plugin/codemirror/dist/ |
| D | styles.min.css | 1 …selection,#dokuwiki__content .CodeMirror-gutter-wrapper ::selection{background-color:transparent}f…
|
| /plugin/indexmenu2/cms/extensions/ |
| D | documentselection.js | 13 …selection?O.value.replace(/\r/g,""):O.value;return c.substring(Q,_);};this.getStart=function(O){tr…
|
| /plugin/ckgedit/ckeditor/plugins/link/ |
| D | plugin.js.unc | 69 // Register selection change handler for the unlink button. 145 editor.contextMenu.addListener( function( element, selection ) 251 * Get the surrounding link element of current selection. 255 * The following selection will all return the link element. 269 var selection = editor.getSelection(); 270 if ( selection.getType() == CKEDITOR.SELECTION_ELEMENT ) 272 var selectedElement = selection.getSelectedElement(); 277 var range = selection.getRanges( true )[ 0 ]; 319 var selection = editor.getSelection(), 320 bookmarks = selection.createBookmarks(), [all …]
|