diff options
| author | Zog | 2017-12-28 09:43:02 +0100 | 
|---|---|---|
| committer | Zog | 2017-12-28 09:43:02 +0100 | 
| commit | 9f9442ef993083d84689c175fe6f5d45acbd5d21 (patch) | |
| tree | 03f629140d89b2f245d77268359e6d170d778788 | |
| parent | c1cce30d47e179743567abb78c85baec0615d444 (diff) | |
| download | chouette-core-9f9442ef993083d84689c175fe6f5d45acbd5d21.tar.bz2 | |
Fix non-matching class names for sticky actions
| -rw-r--r-- | app/assets/javascripts/main_menu.coffee | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/app/assets/javascripts/main_menu.coffee b/app/assets/javascripts/main_menu.coffee index e31ff6724..e943f448a 100644 --- a/app/assets/javascripts/main_menu.coffee +++ b/app/assets/javascripts/main_menu.coffee @@ -32,7 +32,7 @@ $ ->                ]              originalParent: $('.page-action .small').parent() -        for action in $(".sticky-action") +        for action in $(".sticky-action, .sticky-actions")            stickyActions.push              class: "small",              content: [$(action)] | 
