Use the normal rails asset tagging mechanisms for the SWF files
This commit is contained in:
parent
13743ae8d5
commit
7d900f15dc
3 changed files with 11 additions and 2 deletions
|
@ -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; }
|
||||
|
|
|
@ -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;
|
||||
|
||||
|
|
9
config/initializers/asset_tag_helper.rb
Normal file
9
config/initializers/asset_tag_helper.rb
Normal file
|
@ -0,0 +1,9 @@
|
|||
module ActionView
|
||||
module Helpers
|
||||
module AssetTagHelper
|
||||
def asset_path(source)
|
||||
compute_public_path(source, nil)
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
Loading…
Add table
Add a link
Reference in a new issue