]> git.openstreetmap.org Git - rails.git/blob - config/initializers/asset_tag_helper.rb
migration 013 removes tags from nodes and old nodes tables/ 014 does not do anything atm
[rails.git] / config / initializers / asset_tag_helper.rb
1 module ActionView
2   module Helpers
3     module AssetTagHelper
4       def rewrite_asset_path!(source)
5         asset_id = rails_asset_id(source)
6         source << "/#{asset_id}" if !asset_id.blank?
7       end
8     end
9   end
10 end