Skip to content

Commit 308c1a2

Browse files
author
Kendo Bot
committed
Sync with Kendo UI Professional
1 parent d7063e4 commit 308c1a2

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

src/kendo.tooltip.js

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -139,6 +139,10 @@ var __meta__ = { // jshint ignore:line
139139

140140
that._documentKeyDownHandler = proxy(that._documentKeyDown, that);
141141

142+
if (kendo.support.touch && this._isShownOnMouseEnter()) {
143+
that.element.on(kendo.support.mousedown + NS, that.options.filter, proxy(that._showOn, that));
144+
}
145+
142146
that.element.on(that.options.showOn + NS, that.options.filter, proxy(that._showOn, that));
143147

144148
if (this._isShownOnMouseEnter() || this._isShownOnClick()) {
@@ -152,6 +156,10 @@ var __meta__ = { // jshint ignore:line
152156
if (this.options.autoHide && this._isShownOnFocus()) {
153157
that.element.on("blur" + NS, that.options.filter, proxy(that._blur, that));
154158
}
159+
160+
if (kendo.support.touch) {
161+
that.element.on(kendo.support.mousedown + NS, that.options.filter, proxy(that._mouseenter, that));
162+
}
155163
},
156164

157165
options: {

0 commit comments

Comments
 (0)