Created
February 14, 2014 14:09
-
-
Save ryanburnette/9001582 to your computer and use it in GitHub Desktop.
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 ApplicationHelper | |
# get the name of the current layout in views | |
# http://stackoverflow.com/a/9438314/2535178 | |
def current_layout | |
layout = controller.send(:_layout) | |
if layout.instance_of? String | |
layout | |
else | |
File.basename(layout.identifier).split('.').first | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment