handleShowQ()

in src/EmbeddableObject.js [202:215]


    handleShowQ(payload: Object) {
        if (this.qOptions && this.qOptions.expandCallback 
            && typeof this.qOptions.expandCallback === 'function'
            && !this.qBarOpen
        ) {
            this.qOptions.expandCallback();
        }

        if (payload && payload.height) {
            this.iframe.height = payload.height;
        }

        this.qBarOpen = true;
    }