r114972 MediaWiki - Code Review archive

Repository:MediaWiki
Revision:r114971‎ | r114972 | r114973 >
Date:19:09, 19 April 2012
Author:foxtrott
Status:new
Tags:
Comment:
bugfix (datepicker: date is reset on load)
Modified paths:
  • /trunk/extensions/SemanticFormsInputs/libs/datepicker.js (modified) (history)

Diff [purge]

Index: trunk/extensions/SemanticFormsInputs/libs/datepicker.js
@@ -129,17 +129,6 @@
130130 inputShow.datepicker( 'option', 'highlightedDays', params.highlightedDays );
131131 }
132132
133 - if ( re.test( params.currValue ) ) {
134 - inputShow.datepicker( 'setDate', jQuery.datepicker.parseDate( 'yy/mm/dd', params.currValue, null ) );
135 - } else {
136 -
137 - inputShow.val( params.currValue );
138 -
139 - if (params.partOfDTP) {
140 - input.val( params.currValue );
141 - }
142 - }
143 -
144133 if ( ! params.partOfDTP ) {
145134
146135 inputShow.datepicker( 'option', 'altField', input );
@@ -157,6 +146,14 @@
158147 }
159148 });
160149 }
 150+
 151+ if ( re.test( params.currValue ) ) {
 152+ inputShow.datepicker( 'setDate', jQuery.datepicker.parseDate( 'yy/mm/dd', params.currValue, null ) );
 153+ } else {
 154+ inputShow.val( params.currValue );
 155+ input.val( params.currValue );
 156+ }
 157+
161158 inputShow.datepicker( 'widget' ).hide();
162159 }
163160 }