Skip to content

Commit 6501d97

Browse files
committed
remove unused args
1 parent 8ba892b commit 6501d97

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

angular-dropdowns.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ dd.directive('dropdownSelect', ['DropdownService',
7272
dropdownOnchange: '&'
7373
},
7474

75-
controller: ['$scope', '$element', '$attrs', function ($scope, $element, $attrs) {
75+
controller: ['$scope', '$element', function ($scope, $element) {
7676
$scope.labelField = $scope.dropdownItemLabel || 'text';
7777

7878
DropdownService.register($element);
@@ -136,7 +136,7 @@ dd.directive('dropdownMenu', ['$parse', '$compile', 'DropdownService', '$templat
136136
dropdownOnchange: '&'
137137
},
138138

139-
controller: ['$scope', '$element', '$attrs', function ($scope, $element, $attrs) {
139+
controller: ['$scope', '$element', function ($scope, $element) {
140140
$scope.labelField = $scope.dropdownItemLabel || 'text';
141141

142142
var $template = angular.element($templateCache.get('ngDropdowns/templates/dropdownMenu.html'));

0 commit comments

Comments
 (0)