You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ambari.apache.org by al...@apache.org on 2014/02/24 15:28:47 UTC

git commit: AMBARI-4802. Jobs: applying custom filter on jobs page is sending wrong request to server. (alexantonenko)

Repository: ambari
Updated Branches:
  refs/heads/trunk 44619ac77 -> a48f1e26e


AMBARI-4802. Jobs: applying custom filter on jobs page is sending wrong request to server. (alexantonenko)


Project: http://git-wip-us.apache.org/repos/asf/ambari/repo
Commit: http://git-wip-us.apache.org/repos/asf/ambari/commit/a48f1e26
Tree: http://git-wip-us.apache.org/repos/asf/ambari/tree/a48f1e26
Diff: http://git-wip-us.apache.org/repos/asf/ambari/diff/a48f1e26

Branch: refs/heads/trunk
Commit: a48f1e26edf5360cd2543d85e47eb69328477e85
Parents: 44619ac
Author: Alex Antonenko <hi...@gmail.com>
Authored: Mon Feb 24 16:25:42 2014 +0200
Committer: Alex Antonenko <hi...@gmail.com>
Committed: Mon Feb 24 16:25:42 2014 +0200

----------------------------------------------------------------------
 ambari-web/app/controllers/main/jobs_controller.js | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/ambari/blob/a48f1e26/ambari-web/app/controllers/main/jobs_controller.js
----------------------------------------------------------------------
diff --git a/ambari-web/app/controllers/main/jobs_controller.js b/ambari-web/app/controllers/main/jobs_controller.js
index e92f6c8..4fdb234 100644
--- a/ambari-web/app/controllers/main/jobs_controller.js
+++ b/ambari-web/app/controllers/main/jobs_controller.js
@@ -129,8 +129,8 @@ App.MainJobsController = Em.ArrayController.extend({
           var windowStart = self.createCustomStartDate();
           var windowEnd = self.createCustomEndDate();
 
-          self.set("windowEnd", windowStart.getTime());
-          self.set("windowStart", windowEnd.getTime());
+          self.set("windowStart", windowStart.getTime());
+          self.set("windowEnd", windowEnd.getTime());
           this.hide();
         },
         onSecondary: function () {