From: Leandro Cesquini Pereira Date: Sun, 24 Nov 2013 12:41:33 +0000 (-0200) Subject: Fix modernizr path in docs X-Git-Tag: 5.0.3~111^2^2^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F3679%2Fhead;p=thirdparty%2Ffoundation%2Ffoundation-sites.git Fix modernizr path in docs The corret path is vendor/modernizr as can be seen in foundation-rails gem: https://github.com/zurb/foundation-rails/blob/master/vendor/assets/javascripts/vendor/modernizr.js The path vendor/custom.modernizr gives the following error: ActionController::RoutingError (No route matches [GET] "/javascripts/vendor/custom.modernizr.js"): --- diff --git a/doc/pages/applications.html b/doc/pages/applications.html index 5c567c7f1..a537b2646 100644 --- a/doc/pages/applications.html +++ b/doc/pages/applications.html @@ -55,7 +55,7 @@ $(document).foundation(); Make sure that Modernizr is included in the `` of your page: ```ruby -javascript_include_tag "vendor/custom.modernizr" +javascript_include_tag "vendor/modernizr" ``` ### Set Viewport Width @@ -64,4 +64,4 @@ Add the following line to the `` of your page layout: ```html -``` \ No newline at end of file +```