Browse Source

Look for inline popup in all siblings of target, not just immediate sibling.

pull/2772/head
Daniel Collins 9 years ago
parent
commit
2fadf77f37
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