Browse Source

Merge pull request #2772 from bandzoogle/next

[Popup] Look for inline popup in all siblings of target, not just immediate sibling
pull/2783/head
Jack Lukic 9 years ago
parent
commit
402752c4f0
1 changed files with 1 additions and 1 deletions
  1. 2
      src/definitions/modules/popup.js

2
src/definitions/modules/popup.js

@ -96,7 +96,7 @@ $.fn.popup = function(parameters) {
}
else {
if(settings.inline) {
$popup = $target.next(selector.popup).eq(0);
$popup = $target.nextAll(selector.popup).eq(0);
settings.popup = $popup;
}
}

Loading…
Cancel
Save