Ante Sepic

Results 27 comments of Ante Sepic

Maybe try this: ``` methods: { resize () { this.$refs.flickity.resize() } }, mounted () { this.$nextTick(() => { this.resize() }) } ```

Use the `mounted` hook to bind your events, and put it inside the `this.$nextTick(() => { });`, no need for the setTimeout with a random delay.

That's weird. Could you create a reproduction on codesandbox? I would be interested in finding out what's causing it. You are immediately rendering it inside a component, right?

Hey Cary 👋🏻 Thank you for reporting this. I will look into this and get back to you, it might be that the validations schema is more flexible than I've...

Hey, thanks for submitting the patch, I'm currently really busy, will take a look at it next week.

Any chance we could re-open this? A "getting started" docs would be super cool. I am new to the functional programming world and would greatly appreciate an ELI5 intro to...

@FranzSkuffka Thank you very much for your reply. I am not new to JavaScript, so I am familiar with the array methods and use them every day, but I have...

Just ran into error handling "issue", pasting my comment from gitter. Context: I was running into issue where my service would fail because seneca transports do not transport errors (even...

I agree. I like this writeup on errors in node: https://www.joyent.com/developers/node/design/errors Also, the library they mention for aiding the error propagation seems interesting: https://github.com/davepacheco/node-verror So yeah, there really needs to...

For anyone interested, I have created a very lightweight library that supports only the basics: https://github.com/OriginalEXE/vidim