From 5869a9d8cc1bd5a733fce90621ecfae1971f1415 Mon Sep 17 00:00:00 2001 From: Leandro Cesquini Pereira Date: Sun, 24 Nov 2013 10:41:33 -0200 Subject: [PATCH] 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"): --- doc/pages/applications.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 +``` -- 2.47.2