Last active
August 29, 2015 14:16
-
-
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.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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'); | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <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