diff --git a/app/views/stores/index.html.erb b/app/views/stores/index.html.erb index 1b86bbd64..6eca2b0bf 100644 --- a/app/views/stores/index.html.erb +++ b/app/views/stores/index.html.erb @@ -58,10 +58,10 @@ $('.download_icon').find("a").attr("target", "_blank"); $('.download_icon').each(function(){ $(this).mouseenter(function(event) { - $(this).find('img').attr("src", "/images/button/download_focus.png") + $(this).find('img').attr("src", "<%= path_to_image("/images/button/download_focus.png") %>") }); $(this).mouseleave(function(event) { - $(this).find('img').attr("src", "/images/button/download.png") + $(this).find('img').attr("src", "<%= path_to_image("/images/button/download.png") %>") }); }); if(navigator.appName=="Microsoft Internet Explorer"){