Oskar
Oskar
... two important parts to Slay the Spire.. errr web. Is it a priority to get in? Probably not. Game also plays without it, but it does make it a...
I see that you can query posts by category with `/wp-json/better-rest-endpoints/v1/post?category=43`. But it does not seem to work for custom post type. I know `wp-json/wp/v2/products?categories=43` works but then you don't...
Is there a way to easily apply this boilerplate when you need the key-responder? Do I need to extend my components/views with something or is it a mixin, or? Thank...
This sets the `page` and `title` separately from sending the pageview. More here: https://developers.google.com/analytics/devguides/collection/analyticsjs/single-page-applications#tracking_virtual_pageviews Also refactored the code a tiny bit.
It would be handy with a destroy method. A use case could be to disable snapping for touch devices.
I'm trying to create a custom transition that fade in the next slide on top. The curr slide should not fade out before the next is faded completely in on...
Just updated to gust from github and I'm getting the following error: `Notice: Undefined offset: 1 in /wp-content/plugins/gust/gust.class.php on line 422` To me it looks like a an error in...
It would be helpful if an :active class was added to the publish/update buttons as they rely on ajax. For instance temporarily changing the text to 'updating…' or 'saving…' etc....
Template tags that end with a whitespace cause an error. Here's an example. Notice the whitespace between `` and the ending backtick. ```js function component() { return html`Hello ` }...
You can't modify the `game.state` directly, because it's immutable. Kind of annoying, but probably for the best. Instead we do it through `actions`. And we have many. However they are...