Updated Branches: refs/heads/master-6-17-stable ecd0a1c24 -> 3b8c3e7bf
ACL item reorder: Fix error message box Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/3b8c3e7b Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/3b8c3e7b Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/3b8c3e7b Branch: refs/heads/master-6-17-stable Commit: 3b8c3e7bf31d4c228da667fc60d7a48ea1bacd76 Parents: ecd0a1c Author: Brian Federle <[email protected]> Authored: Mon Jul 8 11:08:52 2013 -0700 Committer: Brian Federle <[email protected]> Committed: Mon Jul 8 11:09:37 2013 -0700 ---------------------------------------------------------------------- ui/scripts/vpc.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cloudstack/blob/3b8c3e7b/ui/scripts/vpc.js ---------------------------------------------------------------------- diff --git a/ui/scripts/vpc.js b/ui/scripts/vpc.js index 4267d6f..3067abe 100644 --- a/ui/scripts/vpc.js +++ b/ui/scripts/vpc.js @@ -48,8 +48,8 @@ args.response.success(); }, error: function(errorMsg) { - clearInterval(pollTimer); - args.response.error(parseXMLHttpResponse(errorMsg)); + clearInterval(pollTimer); + args.response.error(errorMsg); } }); }, 1000);
