Remove trailing whitespace from some JS2 files. These are just the worst offenders
[mediawiki.git] / js2 / editPage.js
blob290589d1a524957543ff8bc262ab38481c7def7f
1 /*
2  * JS2-style replacement for MediaWiki edit.js
3  * (right now it just supports the toolbar)
4  */
6 // Setup configuration vars (if not set already)
7 if( !mwAddMediaConfig )
8         var mwAddMediaConfig = {};
10 //The default editPage AMW config
11 var defaultAddMediaConfig = {
12                 'profile': 'mediawiki_edit',
13                 'target_textbox': '#wpTextbox1',
14                 // Note: selections in the textbox will take over the default query
15                 'default_query': wgTitle,
16                 'target_title': wgPageName,
17                 // Here we can setup the content provider overrides
18                 'enabled_cps':['wiki_commons'],
19                 // The local wiki API URL:
20                 'local_wiki_api_url': wgServer + wgScriptPath + '/api.php'
24 js2AddOnloadHook( function() {
25         var amwConf = $j.extend( true, defaultAddMediaConfig, mwAddMediaConfig );
26         // kind of tricky, it would be nice to use run on ready "loader" call here
27         if( typeof $j.wikiEditor != 'undefined' ) {
28                 setTimeout( function() {
29                         $j( '.wikiEditor-ui [rel=file]' ).unbind().addMediaWiz(
30                                 amwConf
31                         );
32                 }, 100 );
33         }
34         //add to the old-toolbar all the time:
35         if( $j('#btn-add-media-wiz').length == 0 ){
36                 $j( '#toolbar' ).append( '<img style="cursor:pointer" id="btn-add-media-wiz" src="' +
37                         mv_skin_img_path + 'Button_add_media.png">' );
38                 $j( '#btn-add-media-wiz' ).addMediaWiz(
39                         amwConf
40                 );
41         }
42 });