Andrew Havens
Andrew Havens
By the way, we are using a self signed SSL certificate which is probably why we are getting this error. I found this thread about ignoring SSL warnings in HTMLUnit....
@nikkypx No, the problem is that I'm asking Chronic to determine this by using the `context: :future` option. Chronic does not seem to be respecting this option. I just tried...
Well I figured out the missing character. Apparently you need a colon after the arrow: ``` : %> ``` Not sure why this is. It's not a CoffeeScript requirement. None...
In case it matters, here are the eco-related version numbers in my Gemfile.lock file: ``` eco (1.0.0) coffee-script eco-source execjs eco-source (1.1.0.rc.1) ```
I'm going to change the title of this issue. The issue is really that this isn't fully documented in the readme. I'll try to submit a pull request by the...
Just submitted pull request #64 to address this issue.
This is also a duplicate of [Faye issue #25](https://github.com/faye/faye/issues/25)
I tried the approach that @andela-eashikodi mentioned, but it didn't work for me. The initial request happens correctly, so I receive the first page, but when I scroll to the...
Thanks @utilityboy. As far as I can tell, my approach is identical. My template: ``` hbs {{#each model as |notification|}} {{my-component notification=notification}} {{else}} No Notifications {{/each}} {{infinity-loader infinityModel=model}} ``` My...
Ah, I think I figured out two things: 1. `infinityModelUpdated` is not an action. It should be defined at the top level. 2. I think the reason my "page 2"...