Created
June 27, 2014 20:00
-
-
Save mglaman/fb1b2646f6f075c8e7c8 to your computer and use it in GitHub Desktop.
Customizes the media edit modal.
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
| <?php | |
| /** | |
| * Implements hook_element_info_alter(). | |
| */ | |
| function mymodule_element_info_alter(&$type) { | |
| if ($type['media']) { | |
| $type['media']['#attached']['js'][] = array( | |
| 'data' => array( | |
| 'media-file-edit' => array( | |
| 'modalSize' => array( | |
| 'width' => 0.7, | |
| 'height' => 0.7, | |
| ), | |
| 'modalOptions' => array( | |
| 'background-color' => '#000', | |
| 'opacity' => .55, | |
| ), | |
| ), | |
| ), | |
| 'type' => 'setting', | |
| ); | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment