Skip to content

Commit

Permalink
Merge pull request #203 from kluchrj/jquery-zindex-fix
Browse files Browse the repository at this point in the history
Fix zIndex() error in jquery 1.12+
  • Loading branch information
mlavin committed Nov 7, 2018
2 parents 8c2d0fd + ddd226a commit 9d23e11
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion selectable/static/selectable/js/jquery.dj.selectable.js
Expand Up @@ -268,7 +268,7 @@
ul.empty();
}
$input.data('page', null);
ul.zIndex($input.zIndex() + 1);
ul.css("zIndex", $input.css("zIndex") + 1);
this._renderMenu(ul, items);
// jQuery UI menu does not define deactivate
if (this.menu.deactivate) {
Expand Down

0 comments on commit 9d23e11

Please sign in to comment.