goodybag / bootstrap-notify

Bootstrap alert system made better, builds off of bootstrap-alert.js
http://goodybag.github.com/bootstrap-notify
823 stars 228 forks source link

how to use onClose function #41

Closed rex232 closed 10 years ago

rex232 commented 10 years ago

how to use onClose function, below code seem get error

                $('.top-left').notify.onClose(function () {
                    alert('a');
                });
jrf0110 commented 10 years ago

I might be wrong, but I believe it is:

$('.top-left').notify({
  onClose: function () {
    alert('a');
  }
});
nijikokun commented 10 years ago

Ah, methods defined afterwards, @jrf0110 is right on the usage.

jrf0110 commented 10 years ago

Thanks, @Nijikokun - @rex232 good to go?

rex232 commented 10 years ago

yes, many thanks!