js-trap-tab
Advanced tools
Comparing version 1.0.1 to 1.0.2
@@ -6,3 +6,3 @@ { | ||
"description": "Accessible Keyboard Traps", | ||
"version": "1.0.1", | ||
"version": "1.0.2", | ||
"homepage": "https://github.com/vmitsaras/js-trap-tab", | ||
@@ -9,0 +9,0 @@ "license": "MIT", |
@@ -58,6 +58,7 @@ /* global jQuery:true */ | ||
// get list of all children elements in given object | ||
var o = self.$element.find('*'); | ||
var o = self.$element.find('*'), | ||
focusEl = self.$element.find('[data-focus]'); | ||
// set the focus to the first keyboard focusable item | ||
o.filter(opts.focusableElementsString).filter(':visible').first().focus(); | ||
focusEl.length ? focusEl.first().focus() : o.filter(opts.focusableElementsString).filter(':visible').first().focus(); | ||
@@ -64,0 +65,0 @@ }; |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
6790
109