mirror of
https://github.com/adobe/brackets.git
synced 2024-11-20 18:02:54 +01:00
Fixed Blank Error Dialog Issue (#14719)
This commit is contained in:
parent
9f50db1f7f
commit
396a3b8f15
@ -176,10 +176,18 @@ define(function (require, exports, module) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
function showErrorPopUp(err) {
|
function showErrorPopUp(err) {
|
||||||
|
if(!err) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
var localizedErrStr = "";
|
||||||
if (typeof (err) === "string") {
|
if (typeof (err) === "string") {
|
||||||
err = Strings[err];
|
localizedErrStr = Strings[err];
|
||||||
} else {
|
} else {
|
||||||
err = StringUtils.format(Strings[err[0]], err[1]);
|
localizedErrStr = StringUtils.format(Strings[err[0]], err[1]);
|
||||||
|
}
|
||||||
|
if(!localizedErrStr) {
|
||||||
|
console.error("Php Tooling Error: " + err);
|
||||||
|
return;
|
||||||
}
|
}
|
||||||
var Buttons = [
|
var Buttons = [
|
||||||
{ className: Dialogs.DIALOG_BTN_CLASS_NORMAL, id: Dialogs.DIALOG_BTN_CANCEL,
|
{ className: Dialogs.DIALOG_BTN_CLASS_NORMAL, id: Dialogs.DIALOG_BTN_CANCEL,
|
||||||
@ -190,7 +198,7 @@ define(function (require, exports, module) {
|
|||||||
Dialogs.showModalDialog(
|
Dialogs.showModalDialog(
|
||||||
DefaultDialogs.DIALOG_ID_ERROR,
|
DefaultDialogs.DIALOG_ID_ERROR,
|
||||||
Strings.PHP_SERVER_ERROR_TITLE,
|
Strings.PHP_SERVER_ERROR_TITLE,
|
||||||
err,
|
localizedErrStr,
|
||||||
Buttons
|
Buttons
|
||||||
).done(function (id) {
|
).done(function (id) {
|
||||||
if (id === Dialogs.DIALOG_BTN_DOWNLOAD) {
|
if (id === Dialogs.DIALOG_BTN_DOWNLOAD) {
|
||||||
|
Loading…
Reference in New Issue
Block a user