Sutherland Boswell

Results 8 comments of Sutherland Boswell

There's definitely a lot of weirdness going on in IE. I just published a commit that solves some of the problems, but there's still a ways to go. It'd be...

Care to share your changes?

In the Laravel community it's a common convention. It's mainly aesthetic, but as you noted it still reduces merge conflicts. When you're mostly working with small classes with just a...

Not in the EU but I found them available on ebay, albeit at a large markup. Resisted paying that much for awhile but now that I have one I wish...

Thanks @MunGell, only issue I've seen is that the Sortable instance is no longer available on the VM

I haven't really worked with custom directives, but this seems to work: ```js inserted: function (el, binding, vnode) { var sortable = new Sortable(el, binding.value || {}); if (binding.arg) {...

@garygreen listen for the onUpdate event and modify the array. Not sure if it's the best method but how I'm doing it for now. ```js onUpdateCallback(evt) { this.items.splice(evt.newIndex, 0, this.items.splice(evt.oldIndex,...

I'm using another package with a lot of view files I'd rather not pull into my project, so I thought it would be simpler to just specify the provider than...