Results 8 comments of Kerry McCullough

``` var module = angular.module('myScroll', [ 'duScroll' ]); module.service('scroll', function($document) { this.isVisible = function(element) { element = $(element)[0]; var rect = element.getBoundingClientRect(); return rect.bottom > 0 && rect.right > 0...

@tim-evans > Yeah, you'd have to move around your routes to get it working I think... Can you describe this in more detail? Currently the title on view page source...

@tylerturdenpants Not to rush you, just not sure if you were notified that I updated the description.

Indeed I was able to meet my need (e2e testing with multiple popovers); by adding a `did-insert` on the `AttachPopover` and accessing the `id` attribute of the element, I was...

@matt17r Any idea when this hits npm?

I did some digging into the way I'm currently handling it in my project (similar and probably inspired by @davidsavoie1's), versus how `onBlur` has been implemented in the main repo,...

IDK if I should raise a separate issue, but the current npm package for this doesn't seem to match the package.json in this repository, and has gulp and browser-sync as...

I am experiencing the same issue where an exception is thrown when the application is loaded on the route which is transitioning only to change the query-params. It's a very...