Index: trunk/extensions/UploadWizard/resources/mw.IframeTransport.js |
— | — | @@ -48,14 +48,14 @@ |
49 | 49 | // attach an additional handler to the form, so, when submitted, it starts showing the progress |
50 | 50 | // XXX this is lame .. there should be a generic way to indicate busy status... |
51 | 51 | this.$form.submit( function() { |
52 | | - //mw.log( "mw.IframeTransport::configureForm> submitting to iframe..." ); |
| 52 | + // mw.log( "mw.IframeTransport::configureForm> submitting to iframe...", "debug" ); |
53 | 53 | return true; |
54 | 54 | } ); |
55 | 55 | |
56 | 56 | // Set up the completion callback |
57 | 57 | var _this = this; |
58 | 58 | $j( '#' + this.iframeId ).load( function() { |
59 | | - //mw.log( "mw.IframeTransport::configureForm> received result in iframe" ); |
| 59 | + // mw.log( "mw.IframeTransport::configureForm> received result in iframe", "debug" ); |
60 | 60 | _this.progressCb( 1.0 ); |
61 | 61 | _this.processIframeResult( $j( this ).get( 0 ) ); |
62 | 62 | } ); |