(cm)
| 1559 | // CONTENTEDITABLE INPUT STYLE |
| 1560 | |
| 1561 | function ContentEditableInput(cm) { |
| 1562 | this.cm = cm; |
| 1563 | this.lastAnchorNode = this.lastAnchorOffset = this.lastFocusNode = this.lastFocusOffset = null; |
| 1564 | this.polling = new Delayed(); |
| 1565 | this.gracePeriod = false; |
| 1566 | } |
| 1567 | |
| 1568 | ContentEditableInput.prototype = copyObj({ |
| 1569 | init: function(display) { |
nothing calls this directly
no outgoing calls
no test coverage detected