Index: trunk/extensions/MarkAsHelpful/MarkAsHelpful.php |
— | — | @@ -48,12 +48,12 @@ |
49 | 49 | $wgExtensionMessagesFiles['MarkAsHelpful'] = $dir . 'MarkAsHelpful.i18n.php'; |
50 | 50 | |
51 | 51 | // Resources |
52 | | -$mbResourceTemplate = array( |
| 52 | +$mahResourceTemplate = array( |
53 | 53 | 'localBasePath' => $dir . 'modules', |
54 | 54 | 'remoteExtPath' => 'MarkAsHelpful/modules' |
55 | 55 | ); |
56 | 56 | |
57 | | -$wgResourceModules['ext.markAsHelpful'] = $mbResourceTemplate + array( |
| 57 | +$wgResourceModules['ext.markAsHelpful'] = $mahResourceTemplate + array( |
58 | 58 | 'styles' => 'ext.markAsHelpful/ext.markAsHelpful.css', |
59 | 59 | 'scripts' => 'ext.markAsHelpful/ext.markAsHelpful.js', |
60 | 60 | 'messages' => array( |
— | — | @@ -63,4 +63,4 @@ |
64 | 64 | 'dependencies' => array( |
65 | 65 | 'mediawiki.util' |
66 | 66 | ), |
67 | | -); |
| 67 | +); |
\ No newline at end of file |
Index: trunk/extensions/MarkAsHelpful/modules/ext.markAsHelpful/ext.markAsHelpful.css |
— | — | @@ -4,17 +4,17 @@ |
5 | 5 | |
6 | 6 | .mw-mah-wrapper .mah-helpful-state { |
7 | 7 | /* @embed */ |
8 | | - background: transparent url( images/mah-helpful-dull.png ) left center no-repeat; |
| 8 | + background: transparent url(images/mah-helpful-dull.png) left center no-repeat; |
9 | 9 | padding-left: 18px; |
10 | 10 | } |
11 | 11 | |
12 | 12 | .mw-mah-wrapper .mah-helpful-state:hover { |
13 | 13 | /* @embed */ |
14 | | - background: transparent url( images/mah-helpful-hover.png ) left center no-repeat; |
| 14 | + background: transparent url(images/mah-helpful-hover.png) left center no-repeat; |
15 | 15 | } |
16 | 16 | |
17 | 17 | .mw-mah-wrapper .mah-helpful-marked-state { |
18 | 18 | /* @embed */ |
19 | | - background: transparent url( images/mah-helpful-marked.png ) left center no-repeat; |
| 19 | + background: transparent url(images/mah-helpful-marked.png) left center no-repeat; |
20 | 20 | padding-left:18px; |
21 | 21 | } |
\ No newline at end of file |