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
In the documentation you have the following as an example for the custom selector. However the package adds the . for the classname itself.
Marquee3k.init({
selector: '.selector-name', // define a custom classname
});
Arguably the package could be changed to allow for both classes and IDs by removing the .. Changing the documentation to the following would be a good start.
Marquee3k.init({
selector: 'selector-name', // define a custom classname without the '.'
});
The text was updated successfully, but these errors were encountered:
In the documentation you have the following as an example for the custom selector. However the package adds the
.
for the classname itself.Arguably the package could be changed to allow for both classes and IDs by removing the
.
. Changing the documentation to the following would be a good start.The text was updated successfully, but these errors were encountered: