Ian Murray
Ian Murray
So, as of now, it doesn't work with the Node.js version of Faye? I thought it did :(
@ryanb thanks ;)
Good idea, will do over the weekend!
Has there been any progress with this issue? Feels like many people could benefit from this :smile:
Unfortunately I have no experience with Angular 2 yet, so I'm not sure how portable this implementation is, but my guess is not very.
Are you triggering the reload on each page change?— Ian Murray S. On Tue, Sep 30, 2014 at 7:38 PM, Soviut [email protected] wrote: > ## I have a big box...
Oh, yeah the transition is definitely to blame. The only way to fix it I think, would be to find a way to catch the animation end and then refresh,...
I guess that's the best solution there is for this problem
@guyyosan that would translate to ``` javascript $rootScope.$on('$stateChangeStart', function () { DoubleClick .getSlot('div-gpt-ad-1234567890') .then(function (slot) { googletag.pubads().clear([slot]); }); }); ``` and ``` javascript $rootScope.$on('$stateChangeSuccess', function () { $timeout(function () {...
Yes I believe it has to observe the `$rootScope`, and the `.run()` call makes more sense to me at least.