fix update dialog buttons (firefox)

This commit is contained in:
rlx 2016-01-24 18:15:30 +05:30
parent fecf1ab987
commit 258218f6dd
1 changed files with 3 additions and 3 deletions

View File

@ -87,7 +87,7 @@ oml.ui.updateDialog = function() {
} else {
that.options({content: $error});
$updateButton.hide();
$closeButton.show();
$closeButton.css({display: 'inline'});
that.enableCloseButton();
that.enableButtons();
}
@ -136,8 +136,8 @@ oml.ui.updateDialog = function() {
[result.data.version.split('-')[1]]
));
$closeButton.hide();
$dontUpdateButton.show();
$updateButton.show();
$dontUpdateButton.css({display: 'inline'});
$updateButton.css({display: 'inline'});
}
});
} else {