/plugin/diagramsnet/lib/js/grapheditor/ |
D | Toolbar.js | 174 Toolbar.prototype.appendDropDownImageHtml = function(elt) argument 180 elt.appendChild(img); 370 elt = menu.addItem('', null, mxUtils.bind(this, function(evt) 378 elt.setAttribute('title', mxResources.get('left')); 380 elt = menu.addItem('', null, mxUtils.bind(this, function(evt) 388 elt.setAttribute('title', mxResources.get('center')); 390 elt = menu.addItem('', null, mxUtils.bind(this, function(evt) 398 elt.setAttribute('title', mxResources.get('right')); 400 elt = menu.addItem('', null, mxUtils.bind(this, function() 404 elt.setAttribute('title', mxResources.get('justifyfull')); [all …]
|
D | Menus.js | 67 graph.updateLabelElements(graph.getSelectionCells(), function(elt) argument 69 elt.removeAttribute('face'); 70 elt.style.fontFamily = null; 72 if (elt.nodeName == 'PRE') 74 graph.replaceElement(elt, 'div'); 705 var elt = menu.addItem(mxResources.get('insertColumnBefore'), null, mxUtils.bind(this, function() 723 elt.setAttribute('title', mxResources.get('insertColumnBefore')); 725 elt = menu.addItem(mxResources.get('insertColumnAfter'), null, mxUtils.bind(this, function() 743 elt.setAttribute('title', mxResources.get('insertColumnAfter')); 745 elt = menu.addItem(mxResources.get('deleteColumn'), null, mxUtils.bind(this, function() [all …]
|
D | Sidebar.js | 260 Sidebar.prototype.getTooltipOffset = function(elt, bounds) argument 270 this.container.offsetTop + elt.offsetTop - this.container.scrollTop - height / 2 + 16)))); 276 Sidebar.prototype.createTooltip = function(elt, cells, w, h, title, showLabel, off, maxSize, mouseD… argument 466 off = (off != null) ? off : this.getTooltipOffset(elt, bounds); 500 Sidebar.prototype.showTooltip = function(elt, cells, w, h, title, showLabel) argument 504 if (this.currentElt != elt) 514 this.createTooltip(elt, cells, w, h, title, showLabel); 526 this.currentElt = elt; 793 Sidebar.prototype.showPopupMenuForEntry = function(elt, libs, evt) argument 803 var elt = document.createElement('div'); [all …]
|
D | Actions.js | 780 var elt = graph.getSelectedElement(); 781 var link = graph.getParentByName(elt, 'A', graph.cellEditor.textarea); 786 if (link == null && elt != null && elt.getElementsByTagName != null) 790 var links = elt.getElementsByTagName('a'); 794 if (links[i].textContent == elt.textContent) 1257 graph.updateLabelElements(cells, function(elt) argument 1259 elt.style.fontWeight = null; 1261 if (elt.nodeName == 'B') 1263 graph.replaceElement(elt); 1269 graph.updateLabelElements(cells, function(elt) argument [all …]
|
D | EditorUi.js | 3207 EditorUi.prototype.setCurrentMenu = function(menu, elt) argument 3209 this.currentMenuElt = elt; 4192 var elt = document.createElement('div'); 4193 elt.className = classname; 4195 return elt; 4201 EditorUi.prototype.addSplitHandler = function(elt, horizontal, dx, onChange) argument 4211 elt.style.touchAction = 'none'; 4216 var result = parseInt(((horizontal) ? elt.style.left : elt.style.bottom)); 4250 mxEvent.addGestureListeners(elt, function(evt) 4258 mxEvent.addListener(elt, 'click', mxUtils.bind(this, function(evt) [all …]
|
/plugin/jdraw/src/com/mxgraph/examples/swing/ |
D | UserObject.java | 78 Element elt = (Element) value; in UserObject() 80 if (elt.getTagName().equalsIgnoreCase("person")) in UserObject() 82 String firstName = elt.getAttribute("firstName"); in UserObject() 83 String lastName = elt.getAttribute("lastName"); in UserObject() 92 else if (elt.getTagName().equalsIgnoreCase("knows")) in UserObject() 94 return elt.getTagName() + " (Since " in UserObject() 95 + elt.getAttribute("since") + ")"; in UserObject() 115 Element elt = (Element) value; in UserObject() 117 if (elt.getTagName().equalsIgnoreCase("person")) in UserObject() 127 elt = (Element) elt.cloneNode(true); in UserObject() [all …]
|
D | UserObject.java.bak | 72 Element elt = (Element) value; 74 if (elt.getTagName().equalsIgnoreCase("person")) 76 String firstName = elt.getAttribute("firstName"); 77 String lastName = elt.getAttribute("lastName"); 86 else if (elt.getTagName().equalsIgnoreCase("knows")) 88 return elt.getTagName() + " (Since " 89 + elt.getAttribute("since") + ")"; 109 Element elt = (Element) value; 111 if (elt.getTagName().equalsIgnoreCase("person")) 121 elt = (Element) elt.cloneNode(true); [all …]
|
/plugin/langdelete/ |
D | script.js | 4 jQuery( "#langshortlist" ).children().each((i, elt) => { 5 elt.addEventListener('mouseover', event => { 6 let lang = elt.textContent; 7 jQuery( elt ).addClass('active'); 11 elt.addEventListener('mouseout', event => { 12 let lang = elt.textContent; 13 jQuery( elt ).removeClass('active'); 20 jQuery("#langshortlist input").each((i, elt) => { 21 elt.addEventListener('change', event => { 30 elt.addEventListener('change', event => { [all …]
|
/plugin/diagramsnet/lib/js/diagramly/ |
D | Minimal.js | 153 var elt = menuObj.addMenu(label, mxUtils.bind(this, function() 159 elt.style.cssText = 'position:absolute;border-top:1px solid lightgray;width:50%;' + 161 elt.className = 'geTitle'; 162 container.appendChild(elt); 164 return elt; 198 var elt = addMenu('newLibrary', mxResources.get('newLibrary')); 199 elt.style.boxSizing = 'border-box'; 200 elt.style.paddingRight = '6px'; 201 elt.style.paddingLeft = '6px'; 202 elt.style.height = '32px'; [all …]
|
D | DrawioFileSync.js | 319 var addClickHandler = mxUtils.bind(this, function(elt) argument 321 mxEvent.addListener(elt, 'click', mxUtils.bind(this, function(evt) 340 var elt = document.createElement('a'); 341 elt.className = 'geToolbarButton'; 342 …elt.style.cssText = 'display:inline-block;position:relative;box-sizing:border-box;margin-right:4px… 343 elt.style.backgroundPosition = 'center center'; 344 elt.style.backgroundRepeat = 'no-repeat'; 345 elt.style.backgroundSize = '24px 24px'; 346 elt.style.height = '24px'; 347 elt.style.width = '24px'; [all …]
|
/plugin/asciidocjs/node_modules/with/node_modules/acorn/src/loose/ |
D | statement.js | 358 let elt 360 elt = this.startNode() 361 elt.local = this.parseIdent() 362 this.finishNode(elt, "ImportDefaultSpecifier") 367 if (elt) node.specifiers.unshift(elt) 376 let elt = this.startNode() 378 elt.local = this.eatContextual("as") ? this.parseIdent() : this.dummyIdent() 379 elts.push(this.finishNode(elt, "ImportNamespaceSpecifier")) 386 let elt = this.startNode() 388 elt.local = this.eatContextual("as") ? this.parseIdent() : this.dummyIdent() [all …]
|
/plugin/asciidocjs/node_modules/acorn/src/loose/ |
D | statement.js | 383 let elt 385 elt = this.startNode() 386 elt.local = this.parseIdent() 387 this.finishNode(elt, "ImportDefaultSpecifier") 392 if (elt) node.specifiers.unshift(elt) 401 let elt = this.startNode() 403 elt.local = this.eatContextual("as") ? this.parseIdent() : this.dummyIdent() 404 elts.push(this.finishNode(elt, "ImportNamespaceSpecifier")) 411 let elt = this.startNode() 413 elt.local = this.eatContextual("as") ? this.parseIdent() : this.dummyIdent() [all …]
|
/plugin/diagramsnet/lib/plugins/ |
D | anonymize.js | 11 function replaceTextContent(elt) argument 13 if (elt.nodeValue != null) 15 elt.nodeValue = editorUi.anonymizeString(elt.nodeValue); 18 if (elt.nodeType == mxConstants.NODETYPE_ELEMENT) 20 var tmp = elt.firstChild;
|
/plugin/tagfilter/ |
D | script.js | 92 (accumulator, currentValue) => accumulator.filter(elt => currentValue.includes(elt)) 99 pages_filtered = pages_filtered.filter(elt => pagesearch.includes(elt)); 122 .forEach(elt => { 124 switch(elt.nodeName) { 127 pageId = Array.from(elt.classList) 133 pageId = elt.querySelector('a')?.title; 136 throw new Error('Unexpected element:' + elt.nodeName); 139 elt.style.display = (presentAll || pages_filtered.includes(pageId)) ? '' : 'none';
|
/plugin/autotooltip/ |
D | script.js | 97 var elt = evt.currentTarget; 98 var extraClasses = $('.plugin-autotooltip-hidden-classes', elt).text(); 100 .html($('.plugin-autotooltip-hidden-tip', elt).html()) 111 }, parseInt($(elt).attr('data-delay')) || 50);
|
/plugin/anewssystem/ |
D | action.php | 176 $elt = explode(",",$news_date); 177 $elt[0] = trim(strip_tags(str_replace('(','',$elt[0]))); 178 $elt[0] = date('F,Y',strtotime($elt[0])); 179 list($new_month,$new_year) = explode(',',$elt[0]);
|
/plugin/freechat/phpfreechat/data/public/js/ |
D | pfcgui.js | 437 var elt = document.createElement('img'); 438 elt.bbc = bbc; 439 elt.setAttribute(className, 'pfc_color'); 440 elt.setAttribute('id', 'pfc_color_'+bbc); 441 elt.style.backgroundColor = '#'+bbc; 442 elt.setAttribute('src', pfc.res.getFileUrl('images/color_transparent.gif')); 443 elt.setAttribute('alt', bbc); 444 elt.onclick = function(){ pfc.switch_text_color(this.bbc); } 445 clist.appendChild(elt);
|
/plugin/fastwiki/ |
D | script.js | 66 function fixActionLinks(elt) { argument 78 $('a[href *= "?do="]', elt).click(function(e) { 96 $('input[type="submit"], input[type="button"], button', elt).click(function(e) { 101 $('input[type != "submit"]', form).each(function(idx, elt) { argument 102 if (elt.type != 'button' && (elt.type != 'hidden' || !(elt.name in supportedFields))) 120 $('a', elt).click(function(e) { 148 ….btn_secedit input[type=submit], .editbutton_section .btn_secedit button', elt).click(function(e) { 156 m_cache.load(elt, m_browserHistory); 176 pvEditor.find('input[type=hidden]').each(function(idx, elt) { argument 177 editor[elt.name].value = elt.value;
|
D | history.js | 30 $('h1, h2, h3, h4, h5, h6', $('.content_initial')).each(function(idx, elt) { argument 31 if (elt.className.indexOf('sectionedit') >= 0) { 32 titleElt = elt; 182 $('a').each(function(idx, elt) { argument
|
D | templates.js | 34 showParent.each(function(idx, elt) { argument 37 $(elt).prepend(newBtn.toggle(mode!='show')); 81 pagetools.each(function(idx, elt) { argument 84 $(elt).prepend(show);
|
/plugin/epub/lang/hu/ |
D | remove.txt | 3 Ezt a fentebbi **Oldal eltávolítása a készítési listából** gombra kattintva tehetjük meg. Ezzel fel… 4 Amíg ezt nem tesszük meg, az oldalon továbbra is megjelennek az **Indítás** és az **Oldal eltávolít…
|
/plugin/asciidocjs/node_modules/acorn/src/ |
D | lval.js | 85 let elt = exprList[i] 86 if (elt) this.toAssignable(elt, isBinding)
|
/plugin/asciidocjs/node_modules/with/node_modules/acorn/src/ |
D | lval.js | 82 let elt = exprList[i] 83 if (elt) this.toAssignable(elt, isBinding)
|
/plugin/sequencediagram/bower_components/lodash/vendor/firebug-lite/src/ |
D | firebug-lite-debug.js | 1213 this.isVisible = function(elt) argument 1223 return this.getStyle(elt, "visibility") != "hidden" && 1224 ( elt.offsetWidth > 0 || elt.offsetHeight > 0 1225 || elt.tagName in invisibleTags 1226 || elt.namespaceURI == "http://www.w3.org/2000/svg" 1227 || elt.namespaceURI == "http://www.w3.org/1998/Math/MathML" ); 1230 this.collapse = function(elt, collapsed) argument 1239 this.setClass(elt, "collapsed"); 1241 this.removeClass(elt, "collapsed"); 1244 elt.setAttribute("collapsed", collapsed ? "true" : "false"); [all …]
|
/plugin/webcode/vendor/ |
D | firebug-lite-1.4.js | 431 …elt){return this.getStyle(elt,"visibility")!="hidden"&&(elt.offsetWidth>0||elt.offsetHeight>0||elt… argument 433 this.collapse=function(elt,collapsed){if(this.isIElt8){if(collapsed){this.setClass(elt,"collapsed") argument 434 }else{this.removeClass(elt,"collapsed") 435 }}else{elt.setAttribute("collapsed",collapsed?"true":"false") 437 this.obscure=function(elt,obscured){if(obscured){this.setClass(elt,"obscured") argument 438 }else{this.removeClass(elt,"obscured") 440 this.hide=function(elt,hidden){elt.style.visibility=hidden?"hidden":"visible" argument 462 this.getClientOffset=function(elt){var addOffset=function addOffset(elt,coords,view){var p=elt.offs… argument 464 if(elt.offsetLeft){coords.x+=elt.offsetLeft+chrome.getMeasurementInPixels(elt,"borderLeft") 465 }if(elt.offsetTop){coords.y+=elt.offsetTop+chrome.getMeasurementInPixels(elt,"borderTop") [all …]
|