Separate startUp() call from main script of mediawiki module
[lhc/web/wiklou.git] / resources / src / mediawiki / mediawiki.startUp.js
1 /**
2 * Auto-register from pre-loaded startup scripts
3 * @ignore (this line will make JSDuck happy)
4 */
5 ( function ( $ ) {
6 'use strict';
7
8 if ( $.isFunction( window.startUp ) ) {
9 window.startUp();
10 window.startUp = undefined;
11 }
12 }( jQuery ) );