fix update dialog buttons (firefox)
This commit is contained in:
parent
fecf1ab987
commit
258218f6dd
1 changed files with 3 additions and 3 deletions
|
@ -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 {
|
||||
|
|
Loading…
Reference in a new issue