r87158 MediaWiki - Code Review archive

Repository:MediaWiki
Revision:r87157‎ | r87158 | r87159 >
Date:02:22, 30 April 2011
Author:neilk
Status:ok
Tags:
Comment:
click to close calendar
Modified paths:
  • /trunk/extensions/UploadWizard/resources/mw.UploadWizardDetails.js (modified) (history)

Diff [purge]

Index: trunk/extensions/UploadWizard/resources/mw.UploadWizardDetails.js
@@ -216,7 +216,17 @@
217217 showAnim: 'slideDown',
218218 showButtonPanel: true
219219 } )
220 - .click( function() { $j( this ).datepicker( 'show' ); } );
 220+ .data( 'open', 1 )
 221+ .click( function() {
 222+ var $this = $j( this );
 223+ if ( $this.data( 'open' ) === 0 ) {
 224+ $this.data( 'open', 1 );
 225+ $this.datepicker( 'show' );
 226+ } else {
 227+ $this.data( 'open', 0 );
 228+ $this.datepicker( 'hide' );
 229+ }
 230+ } );
221231
222232 mw.UploadWizardUtil.makeToggler( moreDetailsCtrlDiv, moreDetailsDiv );
223233

Status & tagging log