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

@ -8,7 +8,7 @@
<script type="text/javascript" defer="defer">
var brokenContentSize = $("content").offsetWidth == 0;
var fo = new SWFObject("/potlatch/potlatch.swf?d="+Math.round(Math.random()*1000), "potlatch", "100%", "100%", "6", "#FFFFFF");
var fo = new SWFObject("<%= asset_path("/potlatch/potlatch.swf") %>", "potlatch", "100%", "100%", "6", "#FFFFFF");
// 700,600 for fixed size, 100%,100% for resizable
var changesaved=true;
var winie=false; if (document.all && window.print) { winie=true; }

View file

@ -8,7 +8,7 @@
<script type="text/javascript" defer="defer">
var brokenContentSize = $("content").offsetWidth == 0;
var fo = new SWFObject("/potlatch2/potlatch2.swf?d="+Math.round(Math.random()*1000), "potlatch", "100%", "100%", "9", "#FFFFFF");
var fo = new SWFObject("<%= asset_path("/potlatch2/potlatch2.swf") %>", "potlatch", "100%", "100%", "9", "#FFFFFF");
// 700,600 for fixed size, 100%,100% for resizable
var changesaved=true;

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