$(document).ready(function() {
    if (typeof lazyload == 'function') { 
        $("img.lazy").lazyload({
            effect: "fadeIn"
        });
    }
    if (typeof dotdotdot == 'function') { 
        $(".ellipsis").dotdotdot();
    }
    $('#gno_navigation_tabs').on('click', 'li a', function() {
        $(this).closest('.dropdown').addClass('dontClose');
    });

    $('#gno_navigation').on('hide.bs.dropdown', function(e) {
        if ($(this).hasClass('dontClose')) {
            e.preventDefault();
        }
        $(this).removeClass('dontClose');
    });

    $('.dropdown-toggle').click(function(e) {
        e.preventDefault();
        setTimeout($.proxy(function() {
          if ('ontouchstart' in document.documentElement) {
            $(this).siblings('.dropdown-backdrop').off().remove();
          }
        }, this), 0);
      });
});