Index: trunk/extensions/Contest/Contest.php |
— | — | @@ -276,15 +276,6 @@ |
277 | 277 | ) |
278 | 278 | ); |
279 | 279 | |
280 | | -$wgResourceModules['contest.contestant.pager'] = $moduleTemplate + array( |
281 | | - 'scripts' => array( |
282 | | - 'contest.contestant.pager.js', |
283 | | - ), |
284 | | - 'styles' => array( |
285 | | - 'contest.contestant.pager.css', |
286 | | - ), |
287 | | -); |
288 | | - |
289 | 280 | $wgResourceModules['contest.special.contestant'] = $moduleTemplate + array( |
290 | 281 | 'styles' => array( |
291 | 282 | 'contest.special.contestant.css', |
Index: trunk/extensions/Contest/includes/ContestantPager.php |
— | — | @@ -47,8 +47,6 @@ |
48 | 48 | |
49 | 49 | // when MW 1.19 becomes min, we want to pass an IContextSource $context here. |
50 | 50 | parent::__construct(); |
51 | | - |
52 | | - $this->getOutput()->addModules( 'contest.contestant.pager' ); |
53 | 51 | } |
54 | 52 | |
55 | 53 | /** |
Index: trunk/extensions/Contest/resources/contest.contestant.pager.css |
— | — | @@ -1,11 +0,0 @@ |
2 | | -/** |
3 | | - * CSS for the Contest MediaWiki extension. |
4 | | - * @see https://www.mediawiki.org/wiki/Extension:Contest |
5 | | - * |
6 | | - * @licence GNU GPL v3 or later |
7 | | - * @author Jeroen De Dauw <jeroendedauw at gmail dot com> |
8 | | - */ |
9 | | - |
10 | | -/*.contestant-row td:hover { |
11 | | - cursor: pointer; |
12 | | -}*/ |
\ No newline at end of file |
Index: trunk/extensions/Contest/resources/contest.contestant.pager.js |
— | — | @@ -1,15 +0,0 @@ |
2 | | -/** |
3 | | - * JavasSript for the Contest MediaWiki extension. |
4 | | - * @see https://www.mediawiki.org/wiki/Extension:Contest |
5 | | - * |
6 | | - * @licence GNU GPL v3 or later |
7 | | - * @author Jeroen De Dauw <jeroendedauw at gmail dot com> |
8 | | - */ |
9 | | - |
10 | | -(function( $, mw ) { |
11 | | - |
12 | | - $( document ).ready( function() { |
13 | | - |
14 | | - } ); |
15 | | - |
16 | | -})( window.jQuery, window.mediaWiki ); |