Use the normal rails asset tagging mechanisms for the SWF files

This commit is contained in:
Tom Hughes 2011-01-14 22:51:02 +00:00
parent 13743ae8d5
commit 7d900f15dc
3 changed files with 11 additions and 2 deletions

View file

@ -0,0 +1,9 @@
module ActionView
module Helpers
module AssetTagHelper
def asset_path(source)
compute_public_path(source, nil)
end
end
end
end