Hi All,

Just something I found, but toolbar module adds a 'toolbar' class to your pages, found this is a nice workaround for pages that should not have toolbar inside of your ModalFrame's

(toolbar can be configured to display for user and role only)

  Drupal.behaviors.toolbarNoBodyMargin = function(context) {
    $('.modalframe-page-wrapper', context).parent('body').removeClass('toolbar');
  };

Comments

markus_petrux’s picture

Status: Active » Closed (works as designed)