BingoObject.prototype.close = function()

in bingo.js [223:230]


BingoObject.prototype.close = function() {
    this.indigo._setSessionId();
    if (this.id >= 0) {
        Bingo._checkResult(this.indigo, this.bingo._lib.bingoEndSearch(this.id));
        this.id = -1;
    }
    return true;
};