This is a bad thursday. It is the 13th. And yesterday I explained to my collegues how lucky we were about the 13th falling on a thursday, not on a friday.
Well, that was yesterday, and today I woke up with angular's fist in my face:
Cannot create property 'creationTrace' on string '__zone_symbol__optimizedZoneEventTask'
Well it might also be zone.js, or maybe even something else deeper down that dark abyss called development stack. Can anybody help me?
Sorry for my attitude, it's just that working with angular since its early alpha-stages has finally taken its toll on me.
PS: Suffice it to say, I did not change anything since the working version yesterday. So I am completely lost as to why and how and where this bug came from...
This issue have been fixed in zone.js, please updated to the latest version of zone.js
Think I found something:
fixing "zone.js" to version "0.8.12" in the package.json solved the issue for me.
I ran into this same problem last night and the following entry for zone.js in my package.json file worked for me:
"zone.js": "0.8.4"
As mentioned in https://github.com/angular/zone.js/issues/832 the error happens only in
zone.js
version0.8.13
and it is related to event binding.The bug has been fixed already but for now in order to fix an application you need to downgrade to previous version of
zone.js
."zone.js": "0.8.12"
inpackage.json
should do the trick.This error fired to me on plunker with lastest version Angular. I changed the index.html file to get version "0.8.12" (from unpkg.com/zone.js/dist/zone.js to unpkg.com/zone.js@0.8.12/dist/zone.js) and worked.