HubSpot / messenger

Growl-style alerts and messages for your app. #hubspot-open-source
http://github.hubspot.com/messenger/
MIT License
4.03k stars 408 forks source link

How to reload window after Messenger().run() message closes? #121

Open larikitty opened 7 years ago

larikitty commented 7 years ago

I'm writing an MVC app and I really need a reload window after message (both error and success) closes. How can I achieve this?

Actually, I'm trying this code on my button click, but no luck:

        Messenger().run({
            successMessage: 'Record Removed!',
            errorMessage: 'Error',
            progressMessage: 'Removing record...',
            events: {
                "click": function () {
                    window.location.reload();
                }
            }
        }, {
            method: 'DELETE',
            url: $(this).data('url'),
            error: function (jqXHR, textStatus, errorThrown) {
                return errorThrown;
            }
        });

bitmoji