sendkeys: Fix `jQuery.fn.focus()` return value

rhansen-sendkeys
Richard Hansen 2021-08-21 04:44:23 -04:00 committed by SamTV12345
parent cff205dbd7
commit 39506fcde1
1 changed files with 1 additions and 1 deletions

View File

@ -158,7 +158,7 @@ $.fn.focus = function(){
this[0].focus(); this[0].focus();
this.selectionTracker(); this.selectionTracker();
} }
focus.apply(this, arguments); return focus.apply(this, arguments);
} }
})(jQuery) })(jQuery)