@qooxdoo/framework 7.9.0 → 7.9.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Manifest.json +2 -2
- package/lib/compiler/compile-info.json +81 -81
- package/lib/compiler/index.js +280 -279
- package/package.json +2 -1
- package/source/class/qx/event/handler/TouchCore.js +3 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@qooxdoo/framework",
|
|
3
|
-
"version": "7.9.
|
|
3
|
+
"version": "7.9.1",
|
|
4
4
|
"description": "The JS Framework for Coders",
|
|
5
5
|
"author": "The qooxdoo project",
|
|
6
6
|
"keywords": [
|
|
@@ -106,6 +106,7 @@
|
|
|
106
106
|
"object-hash": "^2.1.1",
|
|
107
107
|
"prettier": "^2.5.1",
|
|
108
108
|
"ps-tree": "^1.2.0",
|
|
109
|
+
"regenerator-runtime": "^0.14.1",
|
|
109
110
|
"replace-in-file": "^5.0.0",
|
|
110
111
|
"rimraf": "^3.0.2",
|
|
111
112
|
"sass": "1.69.4",
|
|
@@ -115,7 +115,9 @@ qx.Bootstrap.define("qx.event.handler.TouchCore", {
|
|
|
115
115
|
"touchcancel"
|
|
116
116
|
];
|
|
117
117
|
|
|
118
|
-
|
|
118
|
+
// Ensure the workaround applies to IE only as intended
|
|
119
|
+
// See: https://github.com/qooxdoo/qooxdoo/issues/10774
|
|
120
|
+
if (qx.core.Environment.get("engine.name") == "mshtml" && qx.core.Environment.get("event.mspointer")) {
|
|
119
121
|
var engineVersion = parseInt(
|
|
120
122
|
qx.core.Environment.get("engine.version"),
|
|
121
123
|
10
|