enketo-core
Advanced tools
Comparing version 6.1.0 to 6.1.1
@@ -5,3 +5,3 @@ { | ||
"homepage": "https://enketo.org", | ||
"version": "6.1.0", | ||
"version": "6.1.1", | ||
"license": "Apache-2.0", | ||
@@ -69,6 +69,6 @@ "os": [ | ||
"eslint-plugin-prettier": "^4.0.0", | ||
"eslint-plugin-react": "^7.29.4", | ||
"eslint-plugin-react": "^7.30.0", | ||
"eslint-plugin-react-hooks": "^4.4.0", | ||
"eslint-plugin-unicorn": "^36.0.0", | ||
"grunt": "^1.5.2", | ||
"grunt": "^1.5.3", | ||
"grunt-concurrent": "^3.0.0", | ||
@@ -84,3 +84,3 @@ "grunt-contrib-connect": "^3.0.0", | ||
"jsdoc-ts-utils": "^2.0.1", | ||
"karma": "^6.3.19", | ||
"karma": "^6.3.20", | ||
"karma-chrome-launcher": "^3.1.1", | ||
@@ -87,0 +87,0 @@ "karma-coverage": "^2.2.0", |
@@ -117,5 +117,5 @@ import $ from 'jquery'; | ||
if (evaluationCascadeAdditions.length > 0) { | ||
baseEvaluationCascade.push(() => { | ||
baseEvaluationCascade.push(function (...args) { | ||
for (const fn of evaluationCascadeAdditions) { | ||
fn(); | ||
fn.apply(this, args); | ||
} | ||
@@ -128,4 +128,5 @@ }); | ||
(fn) => | ||
(...args) => | ||
callOnIdle(() => fn(...args)) | ||
function (...args) { | ||
callOnIdle(() => fn.apply(this, args)); | ||
} | ||
); | ||
@@ -132,0 +133,0 @@ } |
@@ -80,3 +80,3 @@ import $ from 'jquery'; | ||
static get selector() { | ||
return '.question input[data-type-xml="geopoint"]:not([data-setgeopoint]), .question input[data-type-xml="geotrace"], .question input[data-type-xml="geoshape"]'; | ||
return ':is(.question input[data-type-xml="geopoint"], .question input[data-type-xml="geotrace"], .question input[data-type-xml="geoshape"]):not([data-setvalue], [data-setgeopoint])'; | ||
} | ||
@@ -83,0 +83,0 @@ |
Sorry, the diff of this file is too big to display
926467
16948