Tony Jacobson

Results 6 comments of Tony Jacobson

Hi @Lemolas, can you supply a code sample of the $scope.$watch function for the rn-carousel-index? Best regards, Tony

That's fantastic! I implemented it for my wine site here: http://app.winetracker.co/#!/wines/all/gallery I am now able to run the formatting functions on the child elements (eg truncate text to make it...

Yes you're right the text trembling was happening before. I'm not sure why the carousel does that. Have you experienced that problem before? — Sent from Mailbox On Tue, Jun...

Here's the controller where my carousel logic is located: ``` $scope.generateSlides = function() { function getSlide(target) { var i = target.length; return { index: i, indexClass: 'slide'+i, img: 'http://images.winetracker.co/rs/' +...

I'm using this version of angular: ``` * @license AngularJS v1.2.28 ``` The _blinking_ of the comments text was happening before I introduced the $watch() function. It looks like it...

Ahhh... it is mostly from the fact that data-bind is being used. Is there a way to use angular-ellipsis without data-binding? ``` // THIS WORKS BUT IS SLOW WITH A...