Skip to content

Instantly share code, notes, and snippets.

@keeprock
Last active August 29, 2015 14:16
Show Gist options
  • Select an option

  • Save keeprock/247426c79a26567d92a1 to your computer and use it in GitHub Desktop.

Select an option

Save keeprock/247426c79a26567d92a1 to your computer and use it in GitHub Desktop.
Create a new style for a modal Ctools window. Allows to customize a size of the window.
function custom_init() {
//Customize modal window
drupal_add_js(array(
'CUSTOM_MODAL' => array(
'modalSize' => array(
'type' => 'fixed',
'width' => 850,
'height' => 550,
),
//Animation mode
'animation' => 'fadeIn',
),
), 'setting');
}
<a href="#" class=" ctools-use-modal ctools-modal-CUSTOM_MODAL"></a>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment