Skip to content

Instantly share code, notes, and snippets.

@unlocomqx
Created June 16, 2025 17:46
Show Gist options
  • Save unlocomqx/5a367cf746867ffc3655d95e7b2eb1b0 to your computer and use it in GitHub Desktop.
Save unlocomqx/5a367cf746867ffc3655d95e7b2eb1b0 to your computer and use it in GitHub Desktop.
window.dp_calc.subscribe(function(calc) {
if (!calc.input_fields) {
return
}
if(calc.input_fields.max_largeur && calc.input_fields.max_hauteur){
const max_largeur = calc.input_fields.max_largeur.value;
const max_hauteur = calc.input_fields.max_hauteur.value;
window.updateField('largeur', {
max: max_largeur
})
window.updateField('hauteur', {
max: max_hauteur
})
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment