You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Only append .js/.css to filenames that don't already have an extension.
Changed s:RailsFind() and s:RailsIncludefind to only append .js/.css
extension to filenames that don't already have an extension.
Before this change it would give an error such as 'Can't find file
"public/javascripts/jquery.easing.1.3.js.js" in path', if you tried to
do 'gf' on paths such as these:
<%= javascript_include_tag 'jquery.easing.1.3.js' %>
<%= stylesheet_link_tag '../jquery.fancybox/jquery.fancybox.css' %>
Now it will work with those as well as the simpler cases that don't have
an extension (as before):
<%= stylesheet_link_tag 'print', :media => 'print' %>
<%= javascript_include_tag 'application' %>
0 commit comments