Browse Source

Fixes popup not opening when inline:false after first time, due to unrefreshed selector cache

pull/183/head
jlukic 11 years ago
parent
commit
9fdf8cbbbc
1 changed files with 3 additions and 0 deletions
  1. 3
      src/modules/popup.js

3
src/modules/popup.js

@ -199,6 +199,9 @@ $.fn.popup = function(parameters) {
show: function(callback) {
callback = callback || function(){};
module.debug('Showing pop-up', settings.transition);
if(!settings.preserve) {
module.refresh();
}
if( !module.exists() ) {
module.create();
}

Loading…
Cancel
Save