Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 2cfc3130c3 | |||
| ab74c547c4 | |||
| 0c839cb8b5 |
@@ -1,3 +1,8 @@
|
||||
<a name="3.0.7"></a>
|
||||
## [3.0.7](https://github.com/morgul/ui-bootstrap4/compare/v3.0.5...v3.0.7) (2020-11-19)
|
||||
|
||||
|
||||
|
||||
<a name="3.0.6"></a>
|
||||
## [3.0.6](https://github.com/morgul/ui-bootstrap4/compare/v3.0.5...v3.0.6) (2018-12-04)
|
||||
|
||||
|
||||
+2
-2
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"author": "https://github.com/morgul/ui-bootstrap4/graphs/contributors",
|
||||
"name": "ui-bootstrap4",
|
||||
"version": "3.0.6",
|
||||
"version": "3.0.7",
|
||||
"description": "Native AngularJS (Angular) directives for Bootstrap",
|
||||
"homepage": "http://morgul.github.io/ui-bootstrap4/",
|
||||
"keywords": [
|
||||
@@ -25,7 +25,7 @@
|
||||
"serve": "static dist -p 3857 -a 0.0.0.0 -H '{\"Cache-Control\": \"no-cache, must-revalidate\"}'",
|
||||
"demo": "grunt html2js after-test && static dist -p 3857 -a 0.0.0.0 -H '{\"Cache-Control\": \"no-cache, must-revalidate\"}'",
|
||||
"test": "grunt",
|
||||
"release": "grunt release --"
|
||||
"grunt": "grunt --"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
||||
@@ -194,8 +194,8 @@ angular.module('ui.bootstrap.dropdown', ['ui.bootstrap.multiMap', 'ui.bootstrap.
|
||||
|
||||
scope.focusDropdownEntry = function(keyCode) {
|
||||
var elems = self.dropdownMenu ? //If append to body is used.
|
||||
angular.element(self.dropdownMenu).find('.dropdown-item') :
|
||||
$element.find('div').eq(0).find('a.');
|
||||
angular.element(self.dropdownMenu[0].querySelectorAll('.dropdown-item')) :
|
||||
angular.element($element[0].querySelectorAll('div .dropdown-item'));
|
||||
|
||||
switch (keyCode) {
|
||||
case 40: {
|
||||
|
||||
Reference in New Issue
Block a user