You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The cloud should accepts inputs with a specified html-object. In that case the link-object will be ignored (a you can set it in the given object for html).
For Example:
data=[{text: 'My Text for this item',weight: 10,link: 'http://google.de'html: {element: 'span',class: 'my-class my-class-2',id: 'custom-el-html',attr1: null,attr2: 'myValue',// ...}},// ...]
should produce something like this:
<ahref="http://google.de"><spanclass="my-class my-class-2"
id="custom-el-html"
attr1attr2="myValue">
My Text for this item
</span></a>
The text was updated successfully, but these errors were encountered:
This enhancement has never been implemented? How would I be able to add a class specific for certain tags and a 'filtered' class for tags after they have been clicked? thx
The cloud should accepts inputs with a specified
html
-object. In that case thelink
-object will be ignored (a you can set it in the given object forhtml
).For Example:
should produce something like this:
The text was updated successfully, but these errors were encountered: