]> source.dussan.org Git - nextcloud-server.git/commitdiff
only move dropdown triangle when navigation is opened, fix timing bug
authorJan-Christoph Borchardt <hey@jancborchardt.net>
Thu, 26 Mar 2015 15:25:29 +0000 (16:25 +0100)
committerJan-Christoph Borchardt <hey@jancborchardt.net>
Thu, 26 Mar 2015 16:01:35 +0000 (17:01 +0100)
core/js/js.js

index a0a70e549e5462bdf17c7fd211ac1e0d4e86bfe8..7a895a22419c2b5b87e856b2150b02efbadc3c24 100644 (file)
@@ -1139,13 +1139,6 @@ function initCore() {
                $('#settings #expanddiv').slideUp(OC.menuSpeed);
        });
 
-       // move triangle of apps dropdown to align with app name triangle
-       // 68 is the additional offset coming from the logo width
-       if($('#navigation').length) {
-               var caretPosition = $('.header-appname + .icon-caret').offset().left - 2;
-               $('head').append('<style>#navigation:after { left: '+ caretPosition +'px; }</style>');
-       }
-
        // all the tipsy stuff needs to be here (in reverse order) to work
        $('.displayName .action').tipsy({gravity:'se', fade:true, live:true});
        $('.password .action').tipsy({gravity:'se', fade:true, live:true});
@@ -1203,6 +1196,20 @@ function initCore() {
 
        setupMainMenu();
 
+       // move triangle of apps dropdown to align with app name triangle
+       // 68 is the additional offset coming from the logo width
+       if($('#navigation').length) {
+               $('#header #owncloud + .menutoggle').one('click', function(){
+                       var caretPosition = $('.header-appname + .icon-caret').offset().left - 2;
+                       if(caretPosition > 255) {
+                               // if the app name is longer than the menu, just put the triangle in the middle
+                               return;
+                       } else {
+                               $('head').append('<style>#navigation:after { left: '+ caretPosition +'px; }</style>');
+                       }
+               });
+       }
+
        // just add snapper for logged in users
        if($('#app-navigation').length && !$('html').hasClass('lte9')) {