Closed fhamon closed 4 years ago
A bit weird. I personally prefer the commas, but this change is better for readbility in our XSLT stack.
Right now, if we notify multiple things with one state, we need to separate everything by a comma and our "" logic only add spaces.
so instead of this: <add data-visible-state-notify-off="site.addScroll,autoOembed.pauseAll" />
<add data-visible-state-notify-off="site.addScroll,autoOembed.pauseAll" />
we can do this:
<add data-visible-state-notify-off="site.addScroll" /> <add data-visible-state-notify-off="autoOembed.pauseAll" />
Why not keep both ?
we could
This would make it a non-breaking change ;)
@fhamon ping
@nitriques done
A bit weird. I personally prefer the commas, but this change is better for readbility in our XSLT stack.
Right now, if we notify multiple things with one state, we need to separate everything by a comma and our " " logic only add spaces.
so instead of this:
<add data-visible-state-notify-off="site.addScroll,autoOembed.pauseAll" />
we can do this: