Browse Source

changed case in asset paths to reflect lowercase directory name

Garrick van Buren 12 years ago
parent
commit
47aa0c0176
1 changed files with 20 additions and 20 deletions
  1. 20 20
      foreground.php

+ 20 - 20
foreground.php

@@ -1,7 +1,7 @@
 <?php
 
 /**
- * WikiWonders Foreground Skin
+ * WikiWonders foreground Skin
  *
  * @file
  * @ingroup Skins
@@ -30,27 +30,27 @@ $wgExtensionMessagesFiles['foreground'] = __DIR__.'/foreground.i18n.php';
 
 $wgResourceModules['skins.foreground'] = array(
 	'styles'         => array(
-    	'Foreground/assets/stylesheets/normalize.css',
-        'Foreground/assets/stylesheets/font-awesome.css',
-    	'Foreground/assets/stylesheets/foundation.css',
-    	'Foreground/assets/stylesheets/foreground.css',
-        'Foreground/assets/stylesheets/foreground-print.css',
-    	'Foreground/assets/stylesheets/jquery.autocomplete.css',
-    	'Foreground/assets/stylesheets/responsive-tables.css'
+    	'foreground/assets/stylesheets/normalize.css',
+        'foreground/assets/stylesheets/font-awesome.css',
+    	'foreground/assets/stylesheets/foundation.css',
+    	'foreground/assets/stylesheets/foreground.css',
+        'foreground/assets/stylesheets/foreground-print.css',
+    	'foreground/assets/stylesheets/jquery.autocomplete.css',
+    	'foreground/assets/stylesheets/responsive-tables.css'
     ),
     'scripts'        => array(
-        'Foreground/assets/scripts/vendor/custom.modernizr.js',
-        'Foreground/assets/scripts/vendor/fastclick.js',
-        'Foreground/assets/scripts/foundation/foundation.js',
-        'Foreground/assets/scripts/foundation/foundation.topbar.js',
-        'Foreground/assets/scripts/foundation/foundation.dropdown.js',
-        'Foreground/assets/scripts/foundation/foundation.section.js',
-        'Foreground/assets/scripts/foundation/foundation.clearing.js',
-        'Foreground/assets/scripts/foundation/foundation.cookie.js',
-        'Foreground/assets/scripts/foundation/foundation.placeholder.js',
-        'Foreground/assets/scripts/foundation/foundation.forms.js',
-        'Foreground/assets/scripts/foundation/foundation.alerts.js',
-        'Foreground/assets/scripts/foreground.js'
+        'foreground/assets/scripts/vendor/custom.modernizr.js',
+        'foreground/assets/scripts/vendor/fastclick.js',
+        'foreground/assets/scripts/foundation/foundation.js',
+        'foreground/assets/scripts/foundation/foundation.topbar.js',
+        'foreground/assets/scripts/foundation/foundation.dropdown.js',
+        'foreground/assets/scripts/foundation/foundation.section.js',
+        'foreground/assets/scripts/foundation/foundation.clearing.js',
+        'foreground/assets/scripts/foundation/foundation.cookie.js',
+        'foreground/assets/scripts/foundation/foundation.placeholder.js',
+        'foreground/assets/scripts/foundation/foundation.forms.js',
+        'foreground/assets/scripts/foundation/foundation.alerts.js',
+        'foreground/assets/scripts/foreground.js'
     ),
     'remoteBasePath' => &$GLOBALS['wgStylePath'],
     'localBasePath'  => &$GLOBALS['wgStyleDirectory']