mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-01-01 05:02:50 +08:00
Disable turbolinks on tasks navigation [SCI-2251]
This commit is contained in:
parent
b5dcd3aeb4
commit
31aed55ffc
1 changed files with 2 additions and 2 deletions
|
@ -12,7 +12,7 @@
|
|||
<%= my_module.name %>
|
||||
<% else %>
|
||||
<% if can_read_experiment?(my_module.experiment) %>
|
||||
<%= link_to my_module.name, module_action_to_link_to(my_module), class: "module-link" %>
|
||||
<%= link_to my_module.name, module_action_to_link_to(my_module), class: "module-link", data: { no_turbolink: true } %>
|
||||
<% else %>
|
||||
<%= my_module.name %>
|
||||
<% end %>
|
||||
|
@ -39,7 +39,7 @@
|
|||
<% if currently_active? my_module %>
|
||||
<%= my_module.name %>
|
||||
<% else %>
|
||||
<%= link_to my_module.name, module_action_to_link_to(my_module) %>
|
||||
<%= link_to my_module.name, module_action_to_link_to(my_module), data: { no_turbolink: true } %>
|
||||
<% end %>
|
||||
<% if is_canvas? %>
|
||||
<a href="" class="canvas-center-on"><span class="glyphicon glyphicon-map-marker"></span></a>
|
||||
|
|
Loading…
Reference in a new issue