Last active
January 20, 2020 19:23
-
-
Save unlocomqx/025fe6388a9a5ff826a01685ed5457ab to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$(function() { | |
$.subscribe(dpTopics.RESULT_CALCULATED, (_, data) => { | |
// This function is called after calculating the price & weight | |
// data.input_fields contains all the fields values: data.input_fields[field_name].value | |
console.log(data.input_fields['nombre_de_montant'].value); | |
}); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment