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

dropdown-button.js « directives « common « angularjs « CoreHome « plugins - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 04ac857795aec9dbd787809c4f9cd420a9a94619 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
/*!
 * Matomo - free/libre analytics platform
 *
 * @link https://matomo.org
 * @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
 */

/**
 * Usage:
 * <div piwik-dropdown-button>
 */
(function () {
    angular.module('piwikApp.directive').directive('dropdownButton', piwikDropdownButton);

    piwikDropdownButton.$inject = ['piwik'];

    function piwikDropdownButton(piwik){

        return {
            restrict: 'C',
            compile: function (element, attrs) {
                // BC for materializecss 0.97 => 1.0
                if (!element.attr('data-target')
                    && element.attr('data-activates')
                ) {
                    element.attr('data-target', element.attr('data-activates'));
                }

                if (element.attr('data-target')) {
                    $(element).dropdown({
                        inDuration: 300,
                        outDuration: 225,
                        constrainWidth: false, // Does not change width of dropdown to that of the activator
                        //  hover: true, // Activate on hover
                        belowOrigin: true // Displays dropdown below the button
                    });
                }

                return function (scope, element, attrs) {

                };
            }
        };
    }
})();