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 '.'
});
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.