2

I try angular2 basic demo, when i start index.html with google-chrome path/to/index.html, it raise:

Uncaught RangeError: Maximum call stack size exceeded
    at Function.Object.getOwnPropertyDescriptor (zone.js:1319)
    at HTMLBodyElement.desc.get (zone.js:911)
    at HTMLBodyElement.desc.get (zone.js:913)
    at HTMLBodyElement.desc.get (zone.js:913)
    at HTMLBodyElement.desc.get (zone.js:913)
    at HTMLBodyElement.desc.get (zone.js:913)
    at HTMLBodyElement.desc.get (zone.js:913)
    at HTMLBodyElement.desc.get (zone.js:913)
    at HTMLBodyElement.desc.get (zone.js:913)
    at HTMLBodyElement.desc.get (zone.js:913)
    at HTMLBodyElement.desc.get (zone.js:913)
    at HTMLBodyElement.desc.get (zone.js:913)
    at HTMLBodyElement.desc.get (zone.js:913)
    at HTMLBodyElement.desc.get (zone.js:913)
    at HTMLBodyElement.desc.get (zone.js:913)

How to disable it?

my env is:

linux mint xfce 18
google-chrome 55.0.2883.87 (Official Build) (64-bit)
chikadance
  • 3,591
  • 4
  • 41
  • 73

1 Answers1

1

when i disable chrome extensions, not error is raised i re-enable chrome extension one by one, I found "Screenshot Capture(Better than Google's)", will cause this question, I remove it. now everything work well

chikadance
  • 3,591
  • 4
  • 41
  • 73
  • Thanks! For me, the "Color Contrast Analyzer" extension caused the range error from zone.js with an angular 2 app. Going through the extensions one by one and enable/disabling them helped me find the problem extension. I wonder why this is, and if there is something to fix it. – redfox05 Jan 24 '17 at 00:57