Skip to content
Snippets Groups Projects
Commit dc33aa9e authored by Piotr Gawron's avatar Piotr Gawron
Browse files

menu is closed on any touchstart that is not on the menu

parent 6c1282af
No related branches found
No related tags found
1 merge request!323Resolve "long click is triggered when there is no long click and sometimes is overridden by browser behaviour"
Pipeline #
......@@ -36,6 +36,7 @@ function ContextMenu(params) {
}
};
$(document).on('click', self._documentClickListener);
$(document).on('touchstart', self._documentClickListener);
}
ContextMenu.prototype = Object.create(AbstractGuiElement.prototype);
......@@ -44,6 +45,7 @@ ContextMenu.prototype.constructor = ContextMenu;
ContextMenu.prototype.destroy = function () {
var self = this;
$(document).off('click', self._documentClickListener);
$(document).off('touchstart', self._documentClickListener);
};
ContextMenu.prototype.addOption = function (name, handler, disabled) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment