Joseph Webber
Joseph Webber
My package.json file shows I'm already using the latest build. ``` { "name": "my-bot", "version": "1.0.0", "description": "Test bot", "main": "bot.js", "author": "Webberjo", "dependencies": { "discord.io": "^2.5.3" } } ```
Pretty sure OP is asking if there's a way to update the values of stickySidebar options after they've been set. Example: You want `topSpacing: 50` on mobile and `topSpacing: 100`...
https://splidejs.com/guides/options/#wheel > Enables navigation by the mouse wheel. To use this option, set `waitForTransition` to be `true` and/or give `wheelSleep` duration, otherwise your carousel will immediately reach the end.
Are you adding your own `` placeholder in the HTML?
I'm unable to reproduce your issue using the steps you provided. https://jsfiddle.net/Webberjo/z9p435cu/1/
When the slider is set to loop, Splide creates clones of the slides which means there will be multiple inputs on the page with the same ID. Even if the...
I think this might be an issue with how you're creating your keydown event listener and not with Splide.
It already does this on https://www.garlandtools.org/bell/ Look up Hannibal in the search box and it will show how long until the window opens/closes on the top right of the card....
I was wondering how to do this as well for my Angular4 app using Angular's FormBuilder. I ended up setting the formControl's value in the callback and setting the input's...
@remyblancke `myForm` is the FormGroup that holds related FormControls, `myControl` is the name of the FormControl. Your example isn't using FormControls though. With what you have, you might be able...