Lines Matching refs:textInput

10035 		var textInput = document.createElement('div');
10036 textInput.setAttribute('autocomplete', 'off');
10037 textInput.setAttribute('autocorrect', 'off');
10038 textInput.setAttribute('autocapitalize', 'off');
10039 textInput.setAttribute('spellcheck', 'false');
10040 textInput.style.textRendering = 'optimizeSpeed';
10041 textInput.style.fontFamily = 'monospace';
10042 textInput.style.wordBreak = 'break-all';
10043 textInput.style.background = 'transparent';
10044 textInput.style.color = 'transparent';
10045 textInput.style.position = 'absolute';
10046 textInput.style.whiteSpace = 'nowrap';
10047 textInput.style.overflow = 'hidden';
10048 textInput.style.display = 'block';
10049 textInput.style.fontSize = '1';
10050 textInput.style.zIndex = '-1';
10051 textInput.style.resize = 'none';
10052 textInput.style.outline = 'none';
10053 textInput.style.width = '1px';
10054 textInput.style.height = '1px';
10055 mxUtils.setOpacity(textInput, 0);
10056 textInput.contentEditable = true;
10057 textInput.innerHTML = ' ';
10082 textInput.style.left = (graph.container.scrollLeft + 10) + 'px';
10083 textInput.style.top = (graph.container.scrollTop + 10) + 'px';
10085 graph.container.appendChild(textInput);
10088 textInput.focus();
10100 textInput.innerHTML = ' ';
10101 textInput.focus();
10125 textInput.parentNode.removeChild(textInput);
10136 mxEvent.addListener(textInput, 'copy', mxUtils.bind(this, function(evt)
10143 this.copyCells(textInput);
10153 mxEvent.addListener(textInput, 'cut', mxUtils.bind(this, function(evt)
10160 this.copyCells(textInput, true);
10170 mxEvent.addListener(textInput, 'paste', mxUtils.bind(this, function(evt)
10174 textInput.innerHTML = ' ';
10175 textInput.focus();
10179 this.pasteCells(evt, textInput, true, true);
10186 this.pasteCells(evt, textInput, false, true);
10196 if (mxEvent.getSource(evt) == textInput)