Browse Source

bug[#1018]: The special context menu position (for long press on IOS) will no longer fire on all devices

tags/v0.8.1^2
Shaun 3 years ago
parent
commit
d28705c402
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/client/ui/templates/context/context.js

+ 1
- 1
src/client/ui/templates/context/context.js View File

@@ -63,7 +63,7 @@ define([
};

//Check for a customEvent, like long touch
if (e.detail) {
if (_.isIos()) {
pos.left = e.detail.clientX;
pos.top = e.detail.clientY;
}


Loading…
Cancel
Save