jsuites 4.13.6 → 4.13.7
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/dist/jsuites.basic.js +2 -2
- package/dist/jsuites.js +2 -2
- package/package.json +1 -1
package/dist/jsuites.basic.js
CHANGED
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
|
|
18
18
|
var jSuites = {};
|
|
19
19
|
|
|
20
|
-
var Version = '4.13.
|
|
20
|
+
var Version = '4.13.7';
|
|
21
21
|
|
|
22
22
|
var Events = function() {
|
|
23
23
|
|
|
@@ -120,7 +120,7 @@ var Events = function() {
|
|
|
120
120
|
}
|
|
121
121
|
|
|
122
122
|
// Which component I am clicking
|
|
123
|
-
var path =
|
|
123
|
+
var path = e.path || (e.composedPath && e.composedPath());
|
|
124
124
|
|
|
125
125
|
// If path available get the first element in the chain
|
|
126
126
|
if (path) {
|
package/dist/jsuites.js
CHANGED
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
|
|
18
18
|
var jSuites = {};
|
|
19
19
|
|
|
20
|
-
var Version = '4.13.
|
|
20
|
+
var Version = '4.13.7';
|
|
21
21
|
|
|
22
22
|
var Events = function() {
|
|
23
23
|
|
|
@@ -120,7 +120,7 @@ var Events = function() {
|
|
|
120
120
|
}
|
|
121
121
|
|
|
122
122
|
// Which component I am clicking
|
|
123
|
-
var path =
|
|
123
|
+
var path = e.path || (e.composedPath && e.composedPath());
|
|
124
124
|
|
|
125
125
|
// If path available get the first element in the chain
|
|
126
126
|
if (path) {
|
package/package.json
CHANGED