Rob

Results 5 comments of Rob

For those who want to use this on a field of a model, you can also use the `@JsonDeserialize(using=CoercionLessStringDeserializer.class)` with @WojciechLuczkow's solution. Thank you for the deserializer!

Hi @cowtowncoder, Thank you for all that you do for this project. About this issue - I would love to help where I can but does it really make sense...

Created a PR if interested: https://github.com/azure-ad-b2c/html-templates/pull/18/files

I have a simple solution that uses JQuery: ``` $("#continue").hide(); var observer = new MutationObserver(function (mutations) {     mutations.forEach(function (mutationRecord) {         $("#continue").show();     }); }); var target = document.getElementById('email_success'); observer.observe(target, { attributes:...