14 lines
332 B
JavaScript
14 lines
332 B
JavaScript
|
$(document).ready(function() {
|
||
|
/*
|
||
|
$('.dd_status').click(function() {
|
||
|
// Only call notifications when opening the dropdown
|
||
|
if(!$(this).hasClass('open')) {
|
||
|
console.log('open');
|
||
|
$(this).children('.dropdown-menu').html('<li><a href="#">Option</a></li>');
|
||
|
}
|
||
|
});
|
||
|
*/
|
||
|
|
||
|
});
|
||
|
|