When I click on a filename to bring up the details. A popup windows appears but the entire page, including the popup window are unresponsive to mouse clicks. I have to reload the entire filedepot page to have it become responsive again. I have verified this behavior on the newest versions of Firefox, IE, and Chrome.

Comments

oneklema’s picture

Changed the theme and the popup window is now responsive.

blainelang’s picture

Priority: Critical » Normal
Status: Active » Closed (works as designed)
heyehren’s picture

Just in case changing the theme for the whole website is not an option, you could also change the theme for the filedepot pages only.

Create a module with the following content:

<?php 

/**
 * Implements hook_custom_theme
 */
function MYMODULE_custom_theme() {
  // Set module specific theme.
    if (arg(0) == 'filedepot')
    return variable_get('custom_theme', 'theme_name');
  }
}

?>