From 5b7000a1d4437b8d93da64de30012c302cb30169 Mon Sep 17 00:00:00 2001 From: alibby251 Date: Thu, 25 Apr 2013 21:16:47 +0200 Subject: [PATCH 1/3] Update tooltip.js This change is to make Tooltip compatible with jQuery 1.9.1 --- src/tooltip/tooltip.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/tooltip/tooltip.js b/src/tooltip/tooltip.js index 273624c..95596f9 100644 --- a/src/tooltip/tooltip.js +++ b/src/tooltip/tooltip.js @@ -69,7 +69,7 @@ fade: [ function(done) { var conf = this.getConf(); - if (!$.browser.msie || conf.fadeIE) { + if (!/msie/.test(navigator.userAgent.toLowerCase()) || conf.fadeIE) { this.getTip().fadeTo(conf.fadeInSpeed, conf.opacity, done); } else { @@ -79,7 +79,7 @@ }, function(done) { var conf = this.getConf(); - if (!$.browser.msie || conf.fadeIE) { + if (!/msie/.test(navigator.userAgent.toLowerCase()) || conf.fadeIE) { this.getTip().fadeOut(conf.fadeOutSpeed, done); } else { From 3eed2b8afed59a63b5de167aec00333c60cc9e20 Mon Sep 17 00:00:00 2001 From: alibby251 Date: Thu, 25 Apr 2013 21:23:16 +0200 Subject: [PATCH 2/3] Update dateinput.js This change is to update DateInput to be compatible with jQuery 1.9.1 --- src/dateinput/dateinput.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dateinput/dateinput.js b/src/dateinput/dateinput.js index 4ac3624..885aa51 100644 --- a/src/dateinput/dateinput.js +++ b/src/dateinput/dateinput.js @@ -283,7 +283,7 @@ currDay = date.getDate(); // focus the input after selection (doesn't work in IE) - if (e.type == "click" && !$.browser.msie) { + if (e.type == "click" && !/msie/.test(navigator.userAgent.toLowerCase())) { input.focus(); } From ce83ce1363dbb7695f6feda1470d903fd546db09 Mon Sep 17 00:00:00 2001 From: alibby251 Date: Thu, 25 Apr 2013 21:26:53 +0200 Subject: [PATCH 3/3] Update tooltip.slide.js This change is to update Tooltip's slide functionality to be compatible with jQuery 1.9.1 --- src/tooltip/tooltip.slide.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tooltip/tooltip.slide.js b/src/tooltip/tooltip.slide.js index e5aad5c..eac5057 100644 --- a/src/tooltip/tooltip.slide.js +++ b/src/tooltip/tooltip.slide.js @@ -21,7 +21,7 @@ slideOffset: 10, slideInSpeed: 200, slideOutSpeed: 200, - slideFade: !$.browser.msie + slideFade: !/msie/.test(navigator.userAgent.toLowerCase()) }); // directions for slide effect