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: 6513093d8e2366d23c1a3ae2b33cae5d9b855038 (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
/*!
 * 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-dropdown-button>
 */
(function () {
    angular.module('piwikApp.directive').directive('dropdownButton', piwikDropdownButton);

    piwikDropdownButton.$inject = ['piwik'];

    function piwikDropdownButton(piwik){

        return {
            restrict: 'C',
            compile: function (element, attrs) {

                $(element).dropdown({
                    inDuration: 300,
                    outDuration: 225,
                    constrain_width: 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) {

                };
            }
        };
    }
})();