We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 90b7078 commit 0493e2dCopy full SHA for 0493e2d
README.rdoc
@@ -8,12 +8,12 @@ easy change sidebar position with activeadmin
8
9
# app/admin/posts.rb
10
ActiveAdmin.register Post do
11
- before_filter :sidebar_left!, :only=>[:show]
+ before_filter :left_sidebar!, :only=>[:show]
12
end
13
14
# app/admin/comments.rb
15
ActiveAdmin.register Comment do
16
- before_filter :sidebar_right!
+ before_filter :right_sidebar!
17
18
19
@@ -26,7 +26,7 @@ easy change sidebar position with activeadmin
26
# You can add before, after and around filters to all of your
27
# Active Admin resources from here.
28
#
29
- config.before_filter :sidebar_left!
+ config.before_filter :left_sidebar!
30
31
32
0 commit comments