()
| 1434 | on(d.wrapper, "scroll", function() { d.wrapper.scrollTop = d.wrapper.scrollLeft = 0; }); |
| 1435 | |
| 1436 | function onResize() { |
| 1437 | // Might be a text scaling operation, clear size caches. |
| 1438 | d.cachedCharWidth = d.cachedTextHeight = null; |
| 1439 | clearCaches(cm); |
| 1440 | runInOp(cm, bind(regChange, cm)); |
| 1441 | } |
| 1442 | on(window, "resize", onResize); |
| 1443 | // Above handler holds on to the editor and its data structures. |
| 1444 | // Here we poll to unregister it when the editor is no longer in |
nothing calls this directly
no test coverage detected