r92244 MediaWiki - Code Review archive

Repository:MediaWiki
Revision:r92243‎ | r92244 | r92245 >
Date:15:01, 15 July 2011
Author:nikerabbit
Status:deferred
Tags:
Comment:
makeCollapsible doesn't exists until some version
Modified paths:
  • /trunk/extensions/Translate/js/quickedit.js (modified) (history)

Diff [purge]

Index: trunk/extensions/Translate/js/quickedit.js
@@ -86,7 +86,10 @@
8787 form.hide().slideDown();
8888
8989 // Enable the collapsible element
90 - $( '.mw-identical-title' ).makeCollapsible();
 90+ var $identical = $( '.mw-identical-title' );
 91+ if ( $.isFunction( $identical.makeCollapsible ) ) {
 92+ $identical.makeCollapsible();
 93+ }
9194
9295 form.find( '.mw-translate-next' ).click( function() {
9396 trlLoadNext( page );

Status & tagging log