Index: trunk/extensions/UploadWizard/resources/mw.UploadWizard.js |
— | — | @@ -358,6 +358,11 @@ |
359 | 359 | moveToStep: function( selectedStepName, callback ) { |
360 | 360 | var _this = this; |
361 | 361 | |
| 362 | + if( _this.currentStepName === selectedStepName ) { |
| 363 | + // already there! |
| 364 | + return; |
| 365 | + } |
| 366 | + |
362 | 367 | // scroll to the top of the page (the current step might have been very long, vertically) |
363 | 368 | $j( 'html, body' ).animate( { scrollTop: 0 }, 'slow' ); |
364 | 369 | |