You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ambari.apache.org by pa...@apache.org on 2016/10/19 07:56:07 UTC

ambari git commit: AMBARI-18625. Can't open Hive view in Internet explorer 11 in HDP 2.5 (pallavkul)

Repository: ambari
Updated Branches:
  refs/heads/trunk 7be041894 -> 2a2c557f1


AMBARI-18625. Can't open Hive view in Internet explorer 11 in HDP 2.5 (pallavkul)


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

Branch: refs/heads/trunk
Commit: 2a2c557f126e9cdf148e4ebf9c2b375c66c346df
Parents: 7be0418
Author: pallavkul <pa...@gmail.com>
Authored: Wed Oct 19 13:25:38 2016 +0530
Committer: pallavkul <pa...@gmail.com>
Committed: Wed Oct 19 13:25:38 2016 +0530

----------------------------------------------------------------------
 .../resources/ui/hive-web/app/components/date-range-widget.js    | 4 ++--
 .../resources/ui/hive-web/app/components/date-range-widget.js    | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/ambari/blob/2a2c557f/contrib/views/hive-next/src/main/resources/ui/hive-web/app/components/date-range-widget.js
----------------------------------------------------------------------
diff --git a/contrib/views/hive-next/src/main/resources/ui/hive-web/app/components/date-range-widget.js b/contrib/views/hive-next/src/main/resources/ui/hive-web/app/components/date-range-widget.js
index a9315ba..8e9c074 100644
--- a/contrib/views/hive-next/src/main/resources/ui/hive-web/app/components/date-range-widget.js
+++ b/contrib/views/hive-next/src/main/resources/ui/hive-web/app/components/date-range-widget.js
@@ -81,13 +81,13 @@ export default Ember.Component.extend({
       }
     });
 
-    this.$(".fromDate").on('blur', () => {
+    this.$(".fromDate").on('blur', function() {
       if(moment(self.$(".fromDate").val(), 'MM/DD/YYYY', true).format() === 'Invalid date'){
         self.$(".fromDate").val('')
       }
     });
 
-    this.$(".toDate").on('blur', () => {
+    this.$(".toDate").on('blur', function() {
       if(moment(self.$(".toDate").val(), 'MM/DD/YYYY', true).format() === 'Invalid date'){
         self.$(".toDate").val('')
       }

http://git-wip-us.apache.org/repos/asf/ambari/blob/2a2c557f/contrib/views/hive/src/main/resources/ui/hive-web/app/components/date-range-widget.js
----------------------------------------------------------------------
diff --git a/contrib/views/hive/src/main/resources/ui/hive-web/app/components/date-range-widget.js b/contrib/views/hive/src/main/resources/ui/hive-web/app/components/date-range-widget.js
index a9315ba..8e9c074 100644
--- a/contrib/views/hive/src/main/resources/ui/hive-web/app/components/date-range-widget.js
+++ b/contrib/views/hive/src/main/resources/ui/hive-web/app/components/date-range-widget.js
@@ -81,13 +81,13 @@ export default Ember.Component.extend({
       }
     });
 
-    this.$(".fromDate").on('blur', () => {
+    this.$(".fromDate").on('blur', function() {
       if(moment(self.$(".fromDate").val(), 'MM/DD/YYYY', true).format() === 'Invalid date'){
         self.$(".fromDate").val('')
       }
     });
 
-    this.$(".toDate").on('blur', () => {
+    this.$(".toDate").on('blur', function() {
       if(moment(self.$(".toDate").val(), 'MM/DD/YYYY', true).format() === 'Invalid date'){
         self.$(".toDate").val('')
       }