Fix touch on filemanager heirarchical folder open arrow does not open the sub folder, using touch devices

This commit is contained in:
Hadi Nategh 2015-04-07 16:01:34 +00:00
parent 213c8411e5
commit 19f55e73d8

View File

@ -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);