Hi, any ideas on to easily override the booked-email class in the span tag from booking-js? Is it configurable?
|
'<span class="booked-email"></span>' |
We'd like to add more classes for data obfuscation and avoid tracking. Because it's sensitive.
So in the end we'd like to have <span class='booking-email anonymize-this-info'></span>' as one example.
We're having to create our own custom logic to manipulate the DOM which looks like a lot of unnecessary code if we could instead plug that into the element. Is it possible or any suggestions on an "easier" way to do so?
Hi, any ideas on to easily override the
booked-emailclass in the span tag frombooking-js? Is it configurable?booking-js/src/render.js
Line 587 in e2c3a29
We'd like to add more classes for data obfuscation and avoid tracking. Because it's sensitive.
So in the end we'd like to have
<span class='booking-email anonymize-this-info'></span>'as one example.We're having to create our own custom logic to manipulate the DOM which looks like a lot of unnecessary code if we could instead plug that into the element. Is it possible or any suggestions on an "easier" way to do so?