Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Steur <thomas.steur@googlemail.com>2014-05-21 04:51:56 +0400
committerThomas Steur <thomas.steur@googlemail.com>2014-05-21 04:51:56 +0400
commit2fca0520e60011b32dc7f612d5826d1bbed250d6 (patch)
treeeae5def1cd6bbd57b9424625f683d93a904dcb7b /plugins/ZenMode
parentd473373a77e6014d58c7224363b879452a10ebd2 (diff)
refs #5192 order user menu items + some UI tweaks and simplify
Diffstat (limited to 'plugins/ZenMode')
-rw-r--r--plugins/ZenMode/angularjs/quick-access/quick-access-directive.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/ZenMode/angularjs/quick-access/quick-access-directive.js b/plugins/ZenMode/angularjs/quick-access/quick-access-directive.js
index 7138baa66e..0456b9d4c4 100644
--- a/plugins/ZenMode/angularjs/quick-access/quick-access-directive.js
+++ b/plugins/ZenMode/angularjs/quick-access/quick-access-directive.js
@@ -35,7 +35,7 @@ angular.module('piwikApp').directive('piwikQuickAccess', function($rootElement,
return menuItems;
}
- $rootElement.find('#topLeftBar .topBarElem a, #topRightBar .topBarElem a').each(function (index, element) {
+ $rootElement.find('#topRightBar .topBarElem a').each(function (index, element) {
menuItems.push({name: $(element).text(), index: ++menuIndex, category: 'menuCategory'});
$(element).attr('quick_access', menuIndex);
});