mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-22 07:53:39 +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
213c8411e5
commit
19f55e73d8
@ -73,8 +73,9 @@ var et2_dataview_row = et2_dataview_container.extend(et2_dataview_IViewRange,
|
||||
|
||||
// Update context
|
||||
var self = this;
|
||||
this.expansionButton.off("click").on("click", function () {
|
||||
this.expansionButton.off("click").on("click", function (e) {
|
||||
self._handleExpansionButtonClick(_callback, _context);
|
||||
e.stopImmediatePropagation();
|
||||
});
|
||||
|
||||
$j("td:first", this.tr).prepend(this.expansionButton);
|
||||
|
Loading…
Reference in New Issue
Block a user