joeytheman

Results 10 comments of joeytheman

I am experiencing the same issue with random `NameError` or `NoMethodError` errors for methods that run in a `before_filter` after installing the Cashier gem. I am using Rails 3.2.6 and...

I updated the custom selector on my fork but it still has a few more kinks. You can give it a try at https://github.com/joeytheman/jquery-scrollintoview

I'm also seeing unexpected behavior when upgrading from Doorkeeper `5.4.0` to `5.5.0` that is related to the change in `.lazy_load`. In my tests, I have something similar to ````ruby class...

I combined and recommitted ef6d54c and a74fb23 in pull request 34.

No problem. And I only combined the first two commits, so if you still want the third one you should leave this open.

This is due to the `.jfmfs-friend` elements being floated `left`. Remove the `float` then add `display: inline-block; vertical-align: top;` to `.jfmfs-friend` and `text-align: center;` to a parent container div.

Your example does not perform as I would expect it to. When I check one of the `options` checkboxes, all the checkboxes are automatically selected.

@theironcook The structure of my model is as follows ``` var model = new Backbone.Model(); selected_options = [1,2,5] // Values from selected checkboxes model.set({option: selected_options }); ```

@theironcook Couldn't a change event just be triggered manually when the array is altered? I am unable to manage my options in the way that @summerisgone described. Can model binder...