Return-Path: X-Original-To: apmail-cloudstack-commits-archive@www.apache.org Delivered-To: apmail-cloudstack-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id EDF261091D for ; Fri, 27 Sep 2013 18:54:34 +0000 (UTC) Received: (qmail 86401 invoked by uid 500); 27 Sep 2013 18:54:34 -0000 Delivered-To: apmail-cloudstack-commits-archive@cloudstack.apache.org Received: (qmail 86384 invoked by uid 500); 27 Sep 2013 18:54:33 -0000 Mailing-List: contact commits-help@cloudstack.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@cloudstack.apache.org Delivered-To: mailing list commits@cloudstack.apache.org Received: (qmail 86377 invoked by uid 99); 27 Sep 2013 18:54:33 -0000 Received: from tyr.zones.apache.org (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 27 Sep 2013 18:54:33 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id 629DB90C563; Fri, 27 Sep 2013 18:54:33 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: bfederle@apache.org To: commits@cloudstack.apache.org Message-Id: X-Mailer: ASF-Git Admin Mailer Subject: git commit: updated refs/heads/master to 38b94e9 Date: Fri, 27 Sep 2013 18:54:33 +0000 (UTC) Updated Branches: refs/heads/master a6bfd9602 -> 38b94e934 CLOUDSTACK-3363 UI > fix list Events/Alerts screen is in processing state forever with Delete Events/Alerts request having no filter Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/38b94e93 Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/38b94e93 Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/38b94e93 Branch: refs/heads/master Commit: 38b94e934c38556ed3974ab16a35d5be33f4edc4 Parents: a6bfd96 Author: brito wang Authored: Wed Aug 28 15:39:19 2013 +0800 Committer: Brian Federle Committed: Fri Sep 27 11:53:40 2013 -0700 ---------------------------------------------------------------------- ui/scripts/events.js | 6 ++++++ 1 file changed, 6 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cloudstack/blob/38b94e93/ui/scripts/events.js ---------------------------------------------------------------------- diff --git a/ui/scripts/events.js b/ui/scripts/events.js index 46d45c0..38f7136 100644 --- a/ui/scripts/events.js +++ b/ui/scripts/events.js @@ -111,6 +111,9 @@ data: data, success: function(data) { args.response.success(); + }, + error:function(data) { + args.response.error(parseXMLHttpResponse(data)); } }); } @@ -452,6 +455,9 @@ success: function(data) { args.response.success(); + }, + error:function(data) { + args.response.error(parseXMLHttpResponse(data)); } }); }