eea-searchserver
Version:
EEA Node.js Search Server module
8 lines (7 loc) • 359 B
JavaScript
// insert the logo also on the navbar for the bootstrap menu
// this ensures that switching from portrait to landscape is without any flash since
// we can show and hide with css
$(document).ready(function(){
var $navbar_header = $(".navbar-header");
$("#portal-logo-link").clone().attr('id', 'portal-logo-link-header').prependTo($navbar_header);
});