Browse Source

Typo in popup check for existence

pull/1615/head
jlukic 10 years ago
parent
commit
160e5ac935
1 changed files with 1 additions and 1 deletions
  1. 2
      src/definitions/modules/popup.js

2
src/definitions/modules/popup.js

@ -313,7 +313,7 @@ $.fn.popup = function(parameters) {
return ( module.has.popup() );
}
else {
return ( $popup.closest($context).length > 1 )
return ( $popup.closest($context).length >= 1 )
? true
: false
;

Loading…
Cancel
Save