Index: trunk/phase3/resources/jquery/jquery.textSelection.js |
— | — | @@ -454,7 +454,7 @@ |
455 | 455 | context.fn.restoreSelection(); |
456 | 456 | needSave = true; |
457 | 457 | } |
458 | | - retval = ( hasIframe ? context.fn : fn )[command].call( this, options ); |
| 458 | + var retval = ( hasIframe ? context.fn : fn )[command].call( this, options ); |
459 | 459 | if ( hasIframe && needSave ) { |
460 | 460 | context.fn.saveSelection(); |
461 | 461 | } |
Index: trunk/phase3/resources/mediawiki/mediawiki.Title.js |
— | — | @@ -120,7 +120,7 @@ |
121 | 121 | * @return {mw.Title} |
122 | 122 | */ |
123 | 123 | setAll = function( title, s ) { |
124 | | - var matches = s.match( /^(?:([^:]+):)?(.*?)(?:\.(\w{1,5}))?$/ ); |
| 124 | + var matches = s.match( /^(?:([^:]+):)?(.*?)(?:\.(\w{1,5}))?$/ ), |
125 | 125 | ns_match = getNsIdByName( matches[1] ); |
126 | 126 | if ( matches.length && ns_match ) { |
127 | 127 | if ( matches[1] ) { title._ns = ns_match; } |