mirror of
https://github.com/YunoHost-Apps/hubzilla_ynh.git
synced 2024-09-03 19:26:21 +02:00
20 lines
No EOL
375 B
JavaScript
20 lines
No EOL
375 B
JavaScript
/**
|
|
* NewNav theme specific JavaScript
|
|
*/
|
|
$(document).ready(function() {
|
|
|
|
|
|
$('#avatar').click(function() {
|
|
if($('#navbar-collapse-1').hasClass('in')){
|
|
$('#navbar-collapse-1').removeClass('in');
|
|
}
|
|
});
|
|
|
|
if($('#tabs-collapse-1').length === 0) {
|
|
$('#expand-tabs').hide();
|
|
}
|
|
|
|
// $('.dropdown-menu').click(function(event){
|
|
// event.stopPropagation();
|
|
// });
|
|
}); |