Download Builder missing rel and text attributes
Download Builder missing rel and text attributes

The Download Builder is missing the text and rel attributes for CSS. The Download builder generates this:
<link href="https://cdn.datatables.net/v/dt/dt-1.13.3/datatables.min.css"/>
But should generate this:
<link href="https://cdn.datatables.net/v/dt/dt-1.13.3/datatables.min.css rel="stylesheet" type="text/css"/>
Kevin
This discussion has been closed.
Replies
Hi Kevin,
This was a recent update -
rel
andtype
. I removed thetype
based on the recommendation in MDN:The rel was a mistake though - that should be there and will be in about 2 minutes
Allan
Done. Worth noting that the
script
tag has similarly had thetype="text/javascript"
removed, as that can also be inferred by the browser.Allan