diff --git a/www/js/my.full.js b/www/js/my.full.js index c3b7069b6b..630874d86e 100644 --- a/www/js/my.full.js +++ b/www/js/my.full.js @@ -900,5 +900,12 @@ $(document).ready(function() $('#globalCreate').hover(function() { $(this).prev().removeClass('open'); + $(this).addClass('dropdown-hover'); + }); + + /* Hide create button when global create menu is clicked. */ + $('#globalCreate').click(function() + { + $(this).removeClass('dropdown-hover'); }); });