|
85 | 85 | $scope.dropdownOnchange({
|
86 | 86 | selected: selected
|
87 | 87 | });
|
| 88 | + $element[0].blur(); //trigger blur to clear active |
88 | 89 | };
|
89 | 90 |
|
90 |
| - var onEvent = function (event) { |
| 91 | + $element.bind('click', function (event) { |
91 | 92 | event.stopPropagation();
|
| 93 | + }); |
| 94 | + |
| 95 | + $element.bind('focus', function () { |
92 | 96 | if (!$scope.dropdownDisabled) {
|
93 | 97 | DropdownService.toggleActive($element);
|
94 | 98 | }
|
95 |
| - }; |
| 99 | + }); |
96 | 100 |
|
97 |
| - $element.bind('click', onEvent); |
98 |
| - $element.bind('focus', onEvent); |
| 101 | + $element.bind('blur', function () { |
| 102 | + DropdownService.clearActive(); |
| 103 | + }); |
99 | 104 |
|
100 | 105 | $scope.$on('$destroy', function () {
|
101 | 106 | DropdownService.unregister($element);
|
|
170 | 175 | });
|
171 | 176 | };
|
172 | 177 |
|
173 |
| - var onEvent = function (event) { |
| 178 | + $element.bind('click', function (event) { |
174 | 179 | event.stopPropagation();
|
175 | 180 | if (!$scope.dropdownDisabled) {
|
176 | 181 | DropdownService.toggleActive(tpl);
|
177 | 182 | }
|
178 |
| - }; |
179 |
| - |
180 |
| - $element.bind('click', onEvent); |
| 183 | + }); |
181 | 184 |
|
182 | 185 | $scope.$on('$destroy', function () {
|
183 | 186 | DropdownService.unregister(tpl);
|
|
223 | 226 | });
|
224 | 227 | });
|
225 | 228 |
|
226 |
| - body.bind('keydown', function (evt) { |
227 |
| - var code = evt.keyCode || evt.which; |
228 |
| - //on tab, remove 'active' any dropdown element |
229 |
| - if (code === 9) { |
230 |
| - angular.forEach(_dropdowns, function (el) { |
231 |
| - el.removeClass('active'); |
232 |
| - }); |
233 |
| - } |
234 |
| - }); |
235 |
| - |
236 | 229 | service.register = function (ddEl) {
|
237 | 230 | _dropdowns.push(ddEl);
|
238 | 231 | };
|
|
255 | 248 | ddEl.toggleClass('active');
|
256 | 249 | };
|
257 | 250 |
|
| 251 | + service.clearActive = function () { |
| 252 | + angular.forEach(_dropdowns, function (el) { |
| 253 | + el.removeClass('active'); |
| 254 | + }); |
| 255 | + }; |
| 256 | + |
| 257 | + service.isActive = function (ddEl) { |
| 258 | + return ddEl.hasClass('active'); |
| 259 | + }; |
| 260 | + |
258 | 261 | return service;
|
259 | 262 | }
|
260 | 263 | ]);
|
|
0 commit comments