Commit 73f9474b10bfb826c371d663cd9ae053e96f191c
1 parent
6e961203
Exists in
master
and in
4 other branches
Fix dashboard event filter when navigate via turbolinks
Showing
2 changed files
with
2 additions
and
1 deletions
Show diff stats
app/assets/javascripts/dashboard.js.coffee
@@ -27,7 +27,7 @@ class Dashboard | @@ -27,7 +27,7 @@ class Dashboard | ||
27 | else | 27 | else |
28 | event_filters.splice index, 1 | 28 | event_filters.splice index, 1 |
29 | 29 | ||
30 | - $.cookie "event_filter", event_filters.join(",") | 30 | + $.cookie "event_filter", event_filters.join(","), { path: '/' } |
31 | 31 | ||
32 | initSidebarTab: -> | 32 | initSidebarTab: -> |
33 | key = "dashboard_sidebar_filter" | 33 | key = "dashboard_sidebar_filter" |
app/assets/javascripts/pager.js.coffee