William Shostak

Results 2 comments of William Shostak

In my case I just need to make sure the session exist so I wrote this function; ``` methods: { doesSessionExist(cookieName) { this.$cookies.set(cookieName, 'new_value', '1s') return !this.$cookies.get(cookieName) } } ```...

We recently implemented turbolinks 5 at work and this [https://github.com/wshostak/turbolinks-jquery](https://github.com/wshostak/turbolinks-jquery) is the solution we came up with for dealing with jQuery **on** and **ready**. It allowed us to keep working...