diff --git a/view/theme/frio/css/mod_events.css b/view/theme/frio/css/mod_events.css index 293ffe06b4..6932b1d507 100644 --- a/view/theme/frio/css/mod_events.css +++ b/view/theme/frio/css/mod_events.css @@ -22,7 +22,7 @@ #fc-header-right { margin-top: -4px; } -#fc-header-right button { +#fc-header-right .dropdown > button { color: inherit; } #event-calendar-title { diff --git a/view/theme/frio/js/mod_display.js b/view/theme/frio/js/mod_display.js index ed126d60cd..fd74ccb3ce 100644 --- a/view/theme/frio/js/mod_display.js +++ b/view/theme/frio/js/mod_display.js @@ -4,9 +4,8 @@ // Catch the GUID from the URL var itemGuid = window.location.pathname.split("/").pop(); -var itemGuidSafe = itemGuid.replace(/%.*/, ''); $(window).load(function(){ // Scroll to the Item by its GUID - scrollToItem('item-' + itemGuidSafe); + scrollToItem('item-' + itemGuid); });