dobarkod / cookie-banner

JavaScript based cookie-info banner for complying with EU cookie law
MIT License
425 stars 85 forks source link

Multi-line data-message #57

Closed felipesanti closed 7 years ago

felipesanti commented 7 years ago

Hi, It would be great to have the possibility to add multi-line messages in the data-message field, e.g. Lorem ipsum\ndolor sit amet" Thanks!

zytzagoo commented 7 years ago

Seems to work fine with using <br> in there instead of \n: https://jsfiddle.net/xb2yurLx/

Fiddle is using this markup:

<script type="text/javascript" id="cookiebanner" src="https://cdnjs.cloudflare.com/ajax/libs/cookie-banner/1.0.0/cookiebanner.min.js" data-zindex="1000" data-moreinfo="/cookie-politik/" data-linkmsg="Få mere at vide" data-message="Some cookie text here<br>with new lines<br>weee!" data-close-style="padding-left:15px" data-close-text="X" ></script>

Which renders like this: fiddle-multiline-example-capture

felipesanti commented 7 years ago

@zytzagoo nice, thank you!