cloudstack 3.0 UI: ui-custom VPC - add error handling to addTierDialog().

This commit is contained in:
Jessica Wang 2012-07-05 13:19:07 -07:00
parent 26afe3a96c
commit a39a08a40d
1 changed files with 5 additions and 1 deletions

View File

@ -504,7 +504,11 @@
$loading.remove();
}
);
}
},
error: function(errorMsg) {
cloudStack.dialog.notice({ message: _s(errorMsg) });
$loading.remove();
}
}
});
}