-
Notifications
You must be signed in to change notification settings - Fork 0
Lab 5: Zone.js
Christian Liebel edited this page Mar 19, 2018
·
2 revisions
On your command line, perform the following steps:
$ git reset --hard
$ git pullThe speaker added new components. Take a look at the BoxComponent and see how slow it’s running in the browser.
Let’s make it fast: Replace all HostBindings and HostListeners by calls to the Renderer2 using the component’s ElementRef. Make sure to run all calls related to moving the box outside of Angular’s zone. You may refer to this blog article.