DrawingCell.prototype.enableInteraction = function()

in web/src/drawing.js [33:41]


    DrawingCell.prototype.enableInteraction = function() {
        if (!this._enabled) {
            this._enabled = true;
            this._registerMouse();
            if ('ontouchstart' in document.documentElement) {
                this._registerTouch();
            }
        }
    };