blob: 028784c29bfef067fa87ecf40bd16dfb6e72c996 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
/*!
* Auto-register from pre-loaded startup scripts
*/
( function ( $ ) {
'use strict';
if ( $.isFunction( window.startUp ) ) {
window.startUp();
window.startUp = undefined;
}
}( jQuery ) );
|