9 lines
266 B
JavaScript
9 lines
266 B
JavaScript
|
|
$(document).ready(function(){$(".alert").addClass("in").fadeOut(4500);
|
|
|
|
/* swap open/close side menu icons */
|
|
$('[data-toggle=collapse]').click(function(){
|
|
// toggle icon
|
|
$(this).find("i").toggleClass("glyphicon-chevron-right glyphicon-chevron-down");
|
|
});
|
|
}); |