UI.prototype._clearAll = function()

in web/src/ui.js [77:82]


    UI.prototype._clearAll = function() {
        for (var i = 0; i < this._cells.length - 1; ++i) {
            this._cells[i].clear();
        }
        this._cellChanged();
    };