We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7a84a3d commit 3fe1878Copy full SHA for 3fe1878
src/angular-gridster.js
@@ -1134,7 +1134,7 @@
1134
};
1135
1136
// IE pointer model
1137
- if (target.msSetPointerCapture) {
+ if (target.msSetPointerCapture && prevent) {
1138
target.msSetPointerCapture(pointerId);
1139
} else if (theEvtObj.type === 'mousedown' && numberOfKeys(lastXYById) === 1) {
1140
if (useSetReleaseCapture) {
@@ -1425,7 +1425,7 @@
1425
1426
var maxLeft = gridster.curWidth - 1;
1427
var maxTop = gridster.curRowHeight * gridster.maxRows - 1;
1428
-
+
1429
// Get the current mouse position.
1430
mouseX = e.pageX;
1431
mouseY = e.pageY;
0 commit comments