Merge pull request #3490 from HDinger/fix/21464-footer-is-not-correctly-aligned

[21464] Footer is not correctly aligned
pull/3492/head
ulferts 9 years ago
commit 406aeafd99
  1. 4
      app/assets/javascripts/modal.js

@ -39,7 +39,9 @@ var ModalHelper = (function() {
// prototype, so that all ModalHelper instances can share them.
if (ModalHelper._done !== true) {
// one time initialization
modalDiv = jQuery('<div/>').css('hidden', true).attr('id', 'modalDiv');
modalDiv = jQuery('<div/>').css('hidden', true)
.attr('id', 'modalDiv')
.css('display', 'none');
body.append(modalDiv);
// close when body is clicked

Loading…
Cancel
Save