Bike!Bike! Website!
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

34 lines
887 B

;(function ($, window, document, undefined) {
'use strict';
Foundation.libs.alert = {
name : 'alert',
version : '5.0.3',
settings : {
animation: 'fadeOut',
speed: 300, // fade out speed
callback: function (){}
},
init : function (scope, method, options) {
this.bindings(method, options);
},
events : function () {
$(this.scope).off('.alert').on('click.fndtn.alert', '[data-alert] a.close', function (e) {
var alertBox = $(this).closest("[data-alert]"),
settings = alertBox.data('alert-init') || Foundation.libs.alert.settings;
e.preventDefault();
alertBox[settings.animation](settings.speed, function () {
$(this).trigger('closed').remove();
settings.callback();
});
});
},
reflow : function () {}
};
}(jQuery, this, this.document));