mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-24 08:53:37 +01:00
* All apps: Fix filter-categories does not work in iOS
This commit is contained in:
parent
5788d04073
commit
79c8adb873
@ -564,6 +564,14 @@
|
||||
this.container.mouseleave(function(evt) {
|
||||
_this.mouse_leave(evt);
|
||||
});
|
||||
this.container.bind('touchstart', function(evt) {
|
||||
_this.container_mousedown(evt);
|
||||
return evt.preventDefault();
|
||||
});
|
||||
this.container.bind('touchend', function(evt) {
|
||||
_this.mouse_leave(evt);
|
||||
return evt.preventDefault();
|
||||
});
|
||||
this.search_results.mouseup(function(evt) {
|
||||
_this.search_results_mouseup(evt);
|
||||
});
|
||||
@ -573,6 +581,12 @@
|
||||
this.search_results.mouseout(function(evt) {
|
||||
_this.search_results_mouseout(evt);
|
||||
});
|
||||
this.search_results.bind('touchstart', function(evt) {
|
||||
_this.search_results_mouseover(evt);
|
||||
});
|
||||
this.search_results.bind('touchend', function(evt) {
|
||||
_this.search_results_mouseup(evt);
|
||||
});
|
||||
this.search_results.bind('mousewheel DOMMouseScroll', function(evt) {
|
||||
_this.search_results_mousewheel(evt);
|
||||
});
|
||||
|
Loading…
Reference in New Issue
Block a user