app/views/mr_video/cassettes/show.html.erb in mr_video-1.0.1 vs app/views/mr_video/cassettes/show.html.erb in mr_video-1.0.2

- old
+ new

@@ -8,18 +8,18 @@ <tr> <th>#</th> <th>Url</th> <th>Method</th> <th>Content Type</th> - <th>Last Recorded</th> + <th>Recorded</th> <th>Action</th> </tr> </thead> <tbody> <% @cassette.episodes.each_with_index do |episode, index| %> <tr id="episode_<%= episode.id %>_row"> <td><%= index + 1 %></td> - <td><%= link_to(episode.url, cassette_episode_path(@cassette, episode), html_options = { target: '_blank' }) %></td> + <td><%= link_to(episode.url, cassette_episode_path(@cassette, episode, fix_relative_links: true), html_options = { target: '_blank' }) %></td> <td><%= episode.request_method.upcase %></td> <td><%= episode.content_type %></td> <td title="<%= episode.recorded_at %>"><%= time_ago_in_words(episode.recorded_at) %> ago</td> <td> <%= link_to(cassette_episode_path(@cassette, episode), method: :delete, confirm: "Are you sure you want to delete the \"#{episode.url}\" episode?", 'data-severity' => 'danger', remote: true) do %> \ No newline at end of file