Skip to content
Snippets Groups Projects

Tabbed view header styling

Closed decentral1se requested to merge tabbed-view-header-styling into staging
39 files
+ 1259
318
Compare changes
  • Side-by-side
  • Inline
Files
39
/**
* Hide messages box after 3 seconds automatically
* Hide messages box after 5 seconds automatically with a 1 second fadeout
*/
jQuery(window).load(function(){
setTimeout(function(){
jQuery('.messages-box > ul').fadeOut(3000, 'swing');
}, 3000);
jQuery('.messages-box > ul').fadeOut(1000, 'swing');
}, 5000);
});
Loading