Browse Source

Modal: fixes dimmer and modal to use two separate checks for active status

pull/471/head
jlukic 11 years ago
parent
commit
1ea95cbab2
1 changed files with 1 additions and 1 deletions
  1. 2
      src/modules/modal.js

2
src/modules/modal.js

@ -281,7 +281,7 @@ $.fn.modal = function(parameters) {
},
hideDimmer: function() {
if( $dimmable.dimmer('is active') ) {
if( module.is.active() ) {
module.debug('Hiding dimmer');
if(settings.closable) {
$dimmer

Loading…
Cancel
Save