blob: d94d3c824d3b6f1df9d6989cf8db321fcd7a05e3 (
plain) (
tree)
|
|
$(function(){
var alerts = $('#alerts');
λ.alert = function (tmpl, ctx) {
var alert = $(λ.template('alert_'+tmpl, ctx));
alerts.append(alert);
setTimeout(function(){
alert.alert('close');
}, 15000);
};
});
|