Last active
December 14, 2016 17:59
-
-
Save bennyzr/0bd5d7c59c69010dec73fa4576a5a04d to your computer and use it in GitHub Desktop.
Insert tag into Active Admin body tag to disable turbolinks
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module ActiveAdmin | |
module Views | |
module Pages | |
class Base < Arbre::HTML::Document | |
def build(*args) | |
super | |
add_classes_to_body | |
add_attributes_to_body | |
build_active_admin_head | |
build_page | |
end | |
def add_attributes_to_body | |
@body.attributes[:"data-no-turbolink"] = "true" | |
end | |
end | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
app/lib/active_admin/disable_turbo_links.rb
module ActiveAdmin
module DisableTurbolinks
end
config/initializers/active_admin_extensions.rb
ActiveAdmin::Views::Pages::Base.prepend(ActiveAdmin::DisableTurbolinks)