Skip to content

When I pause the tour backdrop does not hide #67

Closed
@chillyistkult

Description

@chillyistkult

Did I missed something or how it is supposed to work? So I pause the tour via tour.pause() and the popover closes but the backdrop is still in place. Doesn't seemed to be covered in

self.pause = function () {
            return handleEvent(options.onPause).then(function () {
                tourStatus = statuses.PAUSED;
                return self.hideStep(getCurrentStep());
            }).then(function () {
                self.emit('paused', getCurrentStep());
            });
        };

Shouldn't there be something like

   if (getCurrentStep()) {
        uiTourBackdrop.hide();
        return self.hideStep(getCurrentStep());
    }

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions