Created
August 13, 2013 08:30
-
-
Save tridungpham/6219049 to your computer and use it in GitHub Desktop.
Select the selected attachment when open gallery media.
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
// open | |
_media.frame.on('open',function() { | |
// add class | |
_media.frame.$el.closest('.media-modal').addClass('acf-media-modal acf-expanded'); | |
//console.log( _media.frame.state() ); | |
// set selection | |
var selection = _media.frame.state().get('selection'), | |
attachment = wp.media.attachment( id ); | |
attachment.fetch(); | |
selection.add( attachment ); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment