Lines Matching refs:elt

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)
4325 EditorUi.prototype.showDialog = function(elt, w, h, modal, closable, onClose, noScroll, transparent… argument
4335 …this.dialog = new Dialog(this, elt, w, h, modal, closable, onClose, noScroll, transparent, onResiz…
4535 var elt = this.parseHtmlData(value);
4536 var asHtml = elt.getAttribute('data-type') != 'text/plain';
4540 var xml = (asHtml) ? elt.innerHTML :
4541 mxUtils.trim((elt.innerText == null) ?
4542 mxUtils.getTextContent(elt) : elt.innerText);
4562 var spans = elt.getElementsByTagName('span');
4624 var elt = null;
4629 elt = document.createElement('div');
4630 elt.innerHTML = ((hasMeta) ? '<meta charset="utf-8">' : '') +
4635 var styles = elt.getElementsByTagName('style');
4646 if (elt.firstChild != null && elt.firstChild.nodeType == mxConstants.NODETYPE_ELEMENT &&
4647elt.firstChild.nextSibling != null && elt.firstChild.nextSibling.nodeType == mxConstants.NODETYPE_…
4648 elt.firstChild.nodeName == 'META' && elt.firstChild.nextSibling.nodeName == 'A' &&
4649 elt.firstChild.nextSibling.nextSibling == null)
4651 var temp = (elt.firstChild.nextSibling.innerText == null) ?
4652 mxUtils.getTextContent(elt.firstChild.nextSibling) :
4653 elt.firstChild.nextSibling.innerText;
4655 if (temp == elt.firstChild.nextSibling.getAttribute('href'))
4657 mxUtils.setTextContent(elt, temp);
4663 var img = (hasMeta && elt.firstChild != null) ? elt.firstChild.nextSibling : elt.firstChild;
4683 mxUtils.setTextContent(elt, temp);
4690 var images = elt.getElementsByTagName('img');
4697 if (temp != null && img.parentNode == elt && elt.children.length == 1)
4709 mxUtils.setTextContent(elt, temp);
4717 Graph.removePasteFormatting(elt);
4723 elt.setAttribute('data-type', 'text/plain');
4726 return elt;