This commit is contained in:
James Campos 2011-06-16 00:08:57 -07:00
parent bb844ce712
commit a08bde84e9
2 changed files with 12 additions and 0 deletions

View File

@ -1001,6 +1001,12 @@
}
$.bind($('textarea[name=flavors]', dialog), 'change', $.cb.value);
$.bind($('input[name=time]', dialog), 'keyup', options.cb.time);
/*
https://bugzilla.mozilla.org/show_bug.cgi?id=579776
position:fixed and position:absolute shouldn't turn display:-moz-box into display:block
to harmonize, position:fixed and display:-moz-box have to be set on different elements.
*/
overlay = $.el('div', {
id: 'overlay'
});

View File

@ -783,6 +783,12 @@ options =
$.bind $('textarea[name=flavors]', dialog), 'change', $.cb.value
$.bind $('input[name=time]', dialog), 'keyup', options.cb.time
###
https://bugzilla.mozilla.org/show_bug.cgi?id=579776
position:fixed and position:absolute shouldn't turn display:-moz-box into display:block
to harmonize, position:fixed and display:-moz-box have to be set on different elements.
###
overlay = $.el 'div', id: 'overlay'
$.append overlay, dialog
$.append d.body, overlay