JoshuaNovak919

Results 9 comments of JoshuaNovak919

I got it working by adding the following to the `overrides` section in the `bower.json` file. ``` "ev-emitter": { "dependencies": { "jquery-bridget": "~2.0.0" } }, "outlayer": { "main": [ "item.js",...

@victorsosa The main project bower.json file. It should look something like this: ``` { "name": "MyApp", "version": "0.0.0", "dependencies": { "angular": "^1.4.0", "angular-animate": "^1.4.0", "angular-cookies": "^1.4.0", "angular-resource": "^1.4.0", "angular-route": "^1.4.0",...

I just had to do this myself. I ended up adding the line: ``` $scope.form.$setPristine(); ``` To the failure function underneath: ``` console.log("failure", response); ```

You can get it to work properly if you add: ``` e.preventDefault(); ``` to ``` this.next = function(e) { ``` and ``` this.previous = function(e) { ```

If you put the negative width of your image for every image except the first as an inline style on the image it fixes the problem. It seems the images...

@georgejecook I am using it for infinite scrolling right now and I may add some effects like a scale up as the items scroll into view.

I went based off this tutorial: http://motzcod.es/post/107620279512/load-more-items-at-end-of-listview-in I check to see if it's the last item or close to the last item in the list and then I pull more...

@georgejecook Ok sounds great. Thanks for the help. I'll try giving that a shot shortly.