diff options
author | Joshua Peek <josh@joshpeek.com> | 2011-03-29 18:05:23 -0500 |
---|---|---|
committer | Joshua Peek <josh@joshpeek.com> | 2011-03-29 18:05:23 -0500 |
commit | db3e310d6b327b2b58cfbc0318abd3b4ddca5e30 (patch) | |
tree | abc6b2426de401a93b9517be8c6ac8d2ffdff0e3 /actionpack | |
parent | 8e4d0b118bbcdfe6b41d15400d092c871c5a1114 (diff) | |
download | rails-db3e310d6b327b2b58cfbc0318abd3b4ddca5e30.tar.gz rails-db3e310d6b327b2b58cfbc0318abd3b4ddca5e30.tar.bz2 rails-db3e310d6b327b2b58cfbc0318abd3b4ddca5e30.zip |
Change back to /assets prefix
Diffstat (limited to 'actionpack')
-rw-r--r-- | actionpack/lib/action_view/helpers/sprockets_helper.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/actionpack/lib/action_view/helpers/sprockets_helper.rb b/actionpack/lib/action_view/helpers/sprockets_helper.rb index 9fd5f6759c..4f19f4bb21 100644 --- a/actionpack/lib/action_view/helpers/sprockets_helper.rb +++ b/actionpack/lib/action_view/helpers/sprockets_helper.rb @@ -4,7 +4,7 @@ module ActionView module Helpers module SprocketsHelper def sprockets_javascript_path(source) - compute_sprockets_path source, 'javascripts', 'js' + compute_sprockets_path source, 'assets', 'js' end def sprockets_javascript_include_tag(source, options = {}) @@ -17,7 +17,7 @@ module ActionView end def sprockets_stylesheet_path(source) - compute_sprockets_path source, 'stylesheets', 'css' + compute_sprockets_path source, 'assets', 'css' end def sprockets_stylesheet_link_tag(source, options = {}) |