We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5f0708e commit 5b7000aCopy full SHA for 5b7000a
src/tooltip/tooltip.js
@@ -69,7 +69,7 @@
69
fade: [
70
function(done) {
71
var conf = this.getConf();
72
- if (!$.browser.msie || conf.fadeIE) {
+ if (!/msie/.test(navigator.userAgent.toLowerCase()) || conf.fadeIE) {
73
this.getTip().fadeTo(conf.fadeInSpeed, conf.opacity, done);
74
}
75
else {
@@ -79,7 +79,7 @@
79
},
80
81
82
83
this.getTip().fadeOut(conf.fadeOutSpeed, done);
84
85
0 commit comments