I think I may be doing something wrong:

    this.zone = new NgZone({enableLongStackTrace: false});
    this.zone.bind(window.benchmarkLoop);

This results in an error of "this.zone.bind is not a function"

If I just do 

NgZone.bind(window.benchmarkLoop)

then the view doesn't update anymore

Or maybe is zone.bind not in alpha.44?


On Monday, October 26, 2015 at 2:07:35 AM UTC-4, Sander Elias wrote:
>
> Ok,
>
> let someOutsideFuctionICanReferTo = () => console.log('hi');
>
> somewhere inside the ng2 component
>
> zone.bind(someOutsideFuctionICanReferTo)
>
> This will make sure that the function is taken into account for change 
> detection, so you can drop the zone.run from your tick function.
>
> Regards
> Sander
>

-- 
You received this message because you are subscribed to the Google Groups 
"AngularJS" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/angular.
For more options, visit https://groups.google.com/d/optout.

Reply via email to