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:
Diffstat (limited to 'plugins/ZenMode/angularjs/zen-mode/zen-mode-disabler.js')
-rw-r--r--plugins/ZenMode/angularjs/zen-mode/zen-mode-disabler.js35
1 files changed, 35 insertions, 0 deletions
diff --git a/plugins/ZenMode/angularjs/zen-mode/zen-mode-disabler.js b/plugins/ZenMode/angularjs/zen-mode/zen-mode-disabler.js
new file mode 100644
index 0000000000..420020b75f
--- /dev/null
+++ b/plugins/ZenMode/angularjs/zen-mode/zen-mode-disabler.js
@@ -0,0 +1,35 @@
+/*!
+ * Piwik - free/libre analytics platform
+ *
+ * @link http://piwik.org
+ * @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
+ */
+
+/**
+ * Usage:
+ * <div piwik-zen-mode-switcher>...</div>
+ * Will toggle the zen mode on click on this element.
+ */
+(function () {
+ angular.module('piwikApp').directive('piwikReportingMenu', piwikZenModeSwitcher);
+
+ piwikZenModeSwitcher.$inject = ['$rootElement', '$filter'];
+
+ function piwikZenModeSwitcher($rootElement, $filter) {
+
+ return {
+ restrict: 'A',
+ compile: function (element, attrs) {
+
+ element.find('.Menu--dashboard').prepend(
+ '<span piwik-zen-mode-switcher class="deactivateZenMode">'
+ + '<img src="plugins/CoreHome/images/navigation_collapse.png" >'
+ + '</span>');
+
+ return function () {
+ };
+ }
+ };
+
+ }
+})(); \ No newline at end of file