Dialog width is not working in FireFox

Dialog width is not working in FireFox

HI,

I have this dialog :

  1. dialog = $("#dialog-form").dialog({
  2. autoOpen: false,
  3. height: 500,
  4. width: 720,
  5. modal: true,
  6. buttons: {
  7. "Create Rename Rule Type ": addUser,
  8. Cancel: function() {
  9. dialog.dialog( "close" );
  10. }
  11. },
  12. close: function() {
  13. form[ 0 ].reset();
  14. allFields.removeClass("ui-state-error");
  15. }
  16. });


It's working fine in Chrome, but not in Firefox.
thanks.