Dennis Hackethal

Results 35 comments of Dennis Hackethal

Might be a little late, but for anyone coming from Google: I just ran into the same issue, and installing cancancan didn't solve it for me. @justuswilhelm If you want...

Ouch! FYI, it's slightly different for me. I do ```ts $(this.ref.nativeElement).bootstrapSlider('setAttribute', 'ticks', this.ticks); $(this.ref.nativeElement).bootstrapSlider('setAttribute', 'ticks_positions', this.tickPositions); $(this.ref.nativeElement).bootstrapSlider('refresh'); ``` The error is thrown in [line 1250](https://github.com/seiyria/bootstrap-slider/blob/2f88efe04e4a6ec2b6013e782ae02ef10d0757d1/dist/bootstrap-slider.js#L1250) of the main js file:...

Confirmed. It seems there is an issue with https://github.com/dchacke/entangled/blob/development/lib/entangled/controller.rb#L214, where `tubesock.send_data` never ends up getting called. This is where all instance variables should be sent. Currently swamped but will address...

This is very interesting - let me have a look.

Can you provide a branch that runs just plain old sqlite instead of postgres? I have a new computer on which I don't have postgres set up yet and it...

@tommiller1 Thanks for reporting this! I am aware of this bug. It's because Entangled currently doesn't support scopes. In the future, the following collections should work: ``` ruby Model.where(foo: 'bar')...

@tommiller1 Also, what NVM issue are you experiencing?

Oh, got it. Yes, the scopes will also have to be understood in the front end instead of just adding to the collection. I'll leave this issue open to mark...