From 1cb3345deb85325591efea1d3f51334d9f3e2338 Mon Sep 17 00:00:00 2001 From: Nicola Marini Date: Mon, 11 Aug 2014 13:43:40 +0200 Subject: [PATCH] Visual bug in backend toolbar In IE 11 / Chrome browsers (i tested with them) in the toolbar menu appears a '>' on the left side of the menu even if there is no need to scroll the toolbar to see other elements. --- modules/backend/assets/js/october.dragscroll.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/modules/backend/assets/js/october.dragscroll.js b/modules/backend/assets/js/october.dragscroll.js index 38af4b4a2..693311b59 100644 --- a/modules/backend/assets/js/october.dragscroll.js +++ b/modules/backend/assets/js/october.dragscroll.js @@ -84,6 +84,7 @@ return false }) + $(window).on('ready', $.proxy(this.fixScrollClasses, this)) $(window).on('resize', $.proxy(this.fixScrollClasses, this)) /* @@ -354,4 +355,4 @@ $.fn.dragScroll = old return this } -}(window.jQuery); \ No newline at end of file +}(window.jQuery);