27 lines
406 B
JavaScript
27 lines
406 B
JavaScript
/**
|
|
* Admin
|
|
* @package Simple Lightbox
|
|
* @subpackage Admin
|
|
* @author Archetyped
|
|
*/
|
|
|
|
/* global SLB, postboxes, pagenow */
|
|
|
|
if ( !!window.SLB && !!SLB.attach ) { (function ($) {
|
|
|
|
SLB.attach('Admin', {
|
|
/**
|
|
* Initialization routines
|
|
*/
|
|
init: function() {
|
|
if ( postboxes ) {
|
|
postboxes.add_postbox_toggles(pagenow);
|
|
}
|
|
},
|
|
});
|
|
|
|
$(document).ready(function() {
|
|
SLB.Admin.init();
|
|
});
|
|
|
|
})(jQuery);} |