http://www.mediawiki.org/wiki/Special:Code/MediaWiki/96574
Revision: 96574
Author: catrope
Date: 2011-09-08 15:03:56 +0000 (Thu, 08 Sep 2011)
Log Message:
-----------
Fix regression in r96204: IME was not turned on and icon not shown if you
didn't have a cookie with the currently enabled scheme
Modified Paths:
--------------
trunk/extensions/Narayam/js/ext.narayam.core.js
Modified: trunk/extensions/Narayam/js/ext.narayam.core.js
===================================================================
--- trunk/extensions/Narayam/js/ext.narayam.core.js 2011-09-08 15:03:00 UTC
(rev 96573)
+++ trunk/extensions/Narayam/js/ext.narayam.core.js 2011-09-08 15:03:56 UTC
(rev 96574)
@@ -439,7 +439,10 @@
$( '#narayam-' + savedScheme ).attr( 'checked',
'checked' );
} else {
//if no saved input scheme, select the first.
- $( 'input.narayam-scheme:first' ).attr( 'checked',
'checked' );
+ var $firstScheme = $( 'input.narayam-scheme:first' );
+ that.setScheme( $firstScheme.val() );
+ $firstScheme.attr( 'checked', 'checked' );
+
}
var enabledCookie = $.cookie( 'narayam-enabled' );
if ( enabledCookie == '1' || ( mw.config.get(
'wgNarayamEnabledByDefault' ) && enabledCookie !== '0' ) ) {
_______________________________________________
MediaWiki-CVS mailing list
[email protected]
https://lists.wikimedia.org/mailman/listinfo/mediawiki-cvs