Jack Phoenix has uploaded a new change for review. https://gerrit.wikimedia.org/r/261644
Change subject: Explicitly define RL modules' position to prevent warnings under MW 1.26+ ...................................................................... Explicitly define RL modules' position to prevent warnings under MW 1.26+ Change-Id: Id7303b78dcb0ced0ed18889d638a8dc136350fec --- M AjaxLogin.php 1 file changed, 2 insertions(+), 1 deletion(-) git pull ssh://gerrit.wikimedia.org:29418/mediawiki/extensions/AjaxLogin refs/changes/44/261644/1 diff --git a/AjaxLogin.php b/AjaxLogin.php index be498f0..9aee66e 100644 --- a/AjaxLogin.php +++ b/AjaxLogin.php @@ -4,7 +4,6 @@ * * @file * @ingroup Extensions - * @version 2.3 * @author Inez KorczyĆski <korczynski(at)gmail(dot)com> * @author Jack Phoenix <[email protected]> * @author Ryan Schmidt <skizzerz{ at }gmail{ dot }com> @@ -30,6 +29,7 @@ // ResourceLoader support for MediaWiki 1.17+ $wgResourceModules['ext.ajaxLogin.css'] = array( 'styles' => 'AjaxLogin.css', + 'position' => 'top', 'localBasePath' => __DIR__, 'remoteExtPath' => 'AjaxLogin' ); @@ -37,6 +37,7 @@ $wgResourceModules['ext.ajaxLogin.js'] = array( 'scripts' => array( 'lib/jqModal.js', 'AjaxLogin.js' ), 'messages' => array( 'ajaxLogin1', 'ajaxLogin2' ), + 'position' => 'bottom', 'localBasePath' => __DIR__, 'remoteExtPath' => 'AjaxLogin' ); -- To view, visit https://gerrit.wikimedia.org/r/261644 To unsubscribe, visit https://gerrit.wikimedia.org/r/settings Gerrit-MessageType: newchange Gerrit-Change-Id: Id7303b78dcb0ced0ed18889d638a8dc136350fec Gerrit-PatchSet: 1 Gerrit-Project: mediawiki/extensions/AjaxLogin Gerrit-Branch: master Gerrit-Owner: Jack Phoenix <[email protected]> _______________________________________________ MediaWiki-commits mailing list [email protected] https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits
