From e3a4d27a491069b6a9d3abfe15ac94239125ccc8 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Mon, 28 Jan 2013 11:04:45 +0100 Subject: [PATCH] Update code formatting Change-Id: I6a004a2d1ee803325cb6cfa3ee797a89db058635 --- UniversalLanguageSelector.php | 52 +++++++++++++++++------------------ 1 file changed, 26 insertions(+), 26 deletions(-) diff --git a/UniversalLanguageSelector.php b/UniversalLanguageSelector.php index 9abc0dd6..b3d928fa 100644 --- a/UniversalLanguageSelector.php +++ b/UniversalLanguageSelector.php @@ -25,7 +25,7 @@ if ( !defined( 'MEDIAWIKI' ) ) { /** * Version number used in extension credits and in other placed where needed. */ -define( 'ULS_VERSION', '2013-01-16' ); +define( 'ULS_VERSION', '2013-01-28' ); $wgExtensionCredits['other'][] = array( 'path' => __FILE__, @@ -159,13 +159,13 @@ $wgResourceModules['ext.uls.webfonts'] = array( ), ); $wgResourceModules['ext.uls.ime'] = array( - 'scripts' => 'resources/js/ext.uls.ime.js', - 'localBasePath' => $dir, - 'remoteExtPath' => 'UniversalLanguageSelector', - 'dependencies' => array( - 'jquery.ime', - 'ext.uls.preferences', - ), + 'scripts' => 'resources/js/ext.uls.ime.js', + 'localBasePath' => $dir, + 'remoteExtPath' => 'UniversalLanguageSelector', + 'dependencies' => array( + 'jquery.ime', + 'ext.uls.preferences', + ), ); @@ -182,15 +182,15 @@ $wgResourceModules['ext.uls.displaysettings'] = array( ); $wgResourceModules['ext.uls.inputsettings'] = array( - 'scripts' => 'resources/js/ext.uls.inputsettings.js', - 'styles' => 'resources/css/ext.uls.inputsettings.css', - 'localBasePath' => $dir, - 'dependencies' => array( - 'ext.uls.languagesettings', - 'ext.uls.ime', - 'jquery.i18n', - ), - 'remoteExtPath' => 'UniversalLanguageSelector', + 'scripts' => 'resources/js/ext.uls.inputsettings.js', + 'styles' => 'resources/css/ext.uls.inputsettings.css', + 'localBasePath' => $dir, + 'dependencies' => array( + 'ext.uls.languagesettings', + 'ext.uls.ime', + 'jquery.i18n', + ), + 'remoteExtPath' => 'UniversalLanguageSelector', ); $wgResourceModules['jquery.uls'] = array( @@ -221,16 +221,16 @@ $wgResourceModules['ext.uls.webfonts.repository'] = array( ); $wgResourceModules['jquery.i18n'] = array( - 'scripts' => 'lib/jquery.i18n.js', - 'localBasePath' => $dir, - 'remoteExtPath' => 'UniversalLanguageSelector', + 'scripts' => 'lib/jquery.i18n.js', + 'localBasePath' => $dir, + 'remoteExtPath' => 'UniversalLanguageSelector', ); $wgResourceModules['jquery.ime'] = array( - 'scripts' => 'lib/jquery.ime/jquery.ime.js', - 'styles' => array( - 'lib/jquery.ime/css/jquery.ime.css', - ), - 'localBasePath' => $dir, - 'remoteExtPath' => 'UniversalLanguageSelector', + 'scripts' => 'lib/jquery.ime/jquery.ime.js', + 'styles' => array( + 'lib/jquery.ime/css/jquery.ime.css', + ), + 'localBasePath' => $dir, + 'remoteExtPath' => 'UniversalLanguageSelector', );