mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-20 05:31:37 +01:00
Fix touch on filemanager heirarchical folder open arrow does not open the sub folder, using touch devices
This commit is contained in:
parent
3bc36fa80c
commit
cf657413c7
@ -73,8 +73,9 @@ var et2_dataview_row = et2_dataview_container.extend(et2_dataview_IViewRange,
|
|||||||
|
|
||||||
// Update context
|
// Update context
|
||||||
var self = this;
|
var self = this;
|
||||||
this.expansionButton.off("click").on("click", function () {
|
this.expansionButton.off("click").on("click", function (e) {
|
||||||
self._handleExpansionButtonClick(_callback, _context);
|
self._handleExpansionButtonClick(_callback, _context);
|
||||||
|
e.stopImmediatePropagation();
|
||||||
});
|
});
|
||||||
|
|
||||||
$j("td:first", this.tr).prepend(this.expansionButton);
|
$j("td:first", this.tr).prepend(this.expansionButton);
|
||||||
|
Loading…
Reference in New Issue
Block a user