diff options
author | Stefan Wintermeyer <stefan.wintermeyer@amooma.de> | 2013-01-26 14:07:39 +0100 |
---|---|---|
committer | Stefan Wintermeyer <stefan.wintermeyer@amooma.de> | 2013-01-26 14:07:39 +0100 |
commit | 5282a24effdd94bdac07956138809a4304124639 (patch) | |
tree | dfd524e6beae01f9a82d97a8be0fcaa51c3c92d1 /app/views/page/docu | |
parent | 8b2604a4483105c185269d3c38b98e7c51ee7cb2 (diff) |
Moved screencasts into the image directory.
Diffstat (limited to 'app/views/page/docu')
-rw-r--r-- | app/views/page/docu/_screencast_list.html.haml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/app/views/page/docu/_screencast_list.html.haml b/app/views/page/docu/_screencast_list.html.haml index 23d4708..aa22c68 100644 --- a/app/views/page/docu/_screencast_list.html.haml +++ b/app/views/page/docu/_screencast_list.html.haml @@ -9,11 +9,11 @@ %tbody - ['mp4', 'mov', 'gif'].each do |file_extension| - filename = "screencasts/de/#{screencast_name}/#{screencast_name}.#{file_extension}" - - if File.exists?("#{Rails.root}/app#{asset_path(filename)}") + - if File.exists?("#{Rails.root}/public/#{image_path(filename)}") %tr %td - %a{:href => asset_path(filename)} + %a{:href => image_path(filename)} %i{:class => 'icon-download'} =file_extension.upcase %td - = number_to_human_size(File.size("#{Rails.root}/app#{asset_path(filename)}"), :precision => 3) + = number_to_human_size(File.size("#{Rails.root}/public/#{image_path(filename)}"), :precision => 3) |