GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.

Code Duplication    Length = 21-21 lines in 2 locations

archive/2.8.x/js/directive.range.js 1 location

@@ 14-34 (lines=21) @@
11
        var $ctrl = $scope.rangeCtrl;
12
        var tagName = $element[0].tagName.toLowerCase();
13
14
        var DirectiveProperties = (function () {
15
            var multi;
16
17
            function findMultiable(){
18
                var object = $attrs.multi;
19
                if(typeof(object) != "undefined")
20
                    return true;
21
                else
22
                    return false;
23
            }
24
25
            return {
26
                getMultiable: function () {
27
                    if (!multi) {
28
                        multi = findMultiable();
29
                    }
30
                    $scope.multi = multi;
31
                    return multi;
32
                }
33
            };
34
        })();
35
36
        function TryToCallInitDirective(){
37
            if(typeof $scope.InitDirective == "function"){

js/directive.range.js 1 location

@@ 12-32 (lines=21) @@
9
        var $ctrl = $scope.rangeCtrl;
10
        var tagName = $element[0].tagName.toLowerCase();
11
12
        var DirectiveProperties = (function () {
13
            var multi;
14
15
            function findMultiable(){
16
                var object = $attrs.multi;
17
                if(typeof(object) != "undefined")
18
                    return true;
19
                else
20
                    return false;
21
            }
22
23
            return {
24
                getMultiable: function () {
25
                    if (!multi) {
26
                        multi = findMultiable();
27
                    }
28
                    $scope.multi = multi;
29
                    return multi;
30
                }
31
            };
32
        })();
33
34
        function TryToCallInitDirective(){
35
            if(typeof $scope.InitDirective == "function"){