Hi,

Seems that the smart phone dropdown "menu" and colorbox don't play nicely together..

After viewing an image in a colorbox if the "menu" tab is clicked the menu opens and then immediately closes again..

Not a major issue but something others may bump into..

Comments

Jeff Burnz’s picture

I havent tested as yet but I suspect this should be fixed with the latest rounds of updates to Adaptivetheme, many tweaks to the mobile menu toggle extension.

Anonymous’s picture

Issue summary: View changes

Hi,
sorry if this is not 100% related to current issue --- I had similar problems with dropdown closing(and re-opening multiple times) after main-menu click on smartphone. My menu wasn't on colorbox, just regular dropdown.

Issue was only on pages with views exposed filters on them.

However, the fix was a typo(misplaced ' after the contex - corrected to before the context) at ..sky/js/scripts.js line 18

Problem:

Drupal.behaviors.skyCollapsMenuToggle = {
  attach: function (context, settings) {
    $('.menu-toggle a, context').click(function() {
      $('#menu-bar').toggleClass('toggle-active').find('nav').slideToggle('fast');
      return false;
    });
  }
}

Fix:

Drupal.behaviors.skyCollapsMenuToggle = {
  attach: function (context, settings) {
    $('.menu-toggle a', context).click(function() {
      $('#menu-bar').toggleClass('toggle-active').find('nav').slideToggle('fast');
      return false;
    });
  }
}

To fix this, just overwrite the file, upload and clear cache.

Edit: own typos fixed :D

tags for google searches:
adaptive themes sky bouncing auto closing drop-down menu smartphone mobile issue