UI.prototype._hasEmptyCell = function()

in web/src/ui.js [104:111]


    UI.prototype._hasEmptyCell = function() {
        for (var i = 0; i < this._cells.length; ++i) {
            if (this._cells[i].empty()) {
                return true;
            }
        }
        return false;
    };