EVOLUTION-MANAGER
Edit File: isecwindow.html
<a href='https://github.com/angular/angular.js/edit/v1.3.x/docs/content/error/$parse/isecwindow.ngdoc?message=docs(error%2Fisecwindow)%3A%20describe%20your%20change...' class='improve-docs btn btn-primary'><i class="glyphicon glyphicon-edit"> </i>Improve this Doc</a> <h1>Error: error:isecwindow <div><span class='hint'>Referencing Window object in Expression</span></div> </h1> <div> <pre class="minerr-errmsg" error-display="Referencing the Window in Angular expressions is disallowed! Expression: {0}">Referencing the Window in Angular expressions is disallowed! Expression: {0}</pre> </div> <h2>Description</h2> <div class="description"> <p>Occurs when an expression attempts to access a Window object.</p> <p>AngularJS restricts access to the Window object from within expressions since it's a known way to execute arbitrary Javascript code.</p> <p>This check is only performed on object index and function calls in Angular expressions. These are places that are harder for the developer to guard. Dotted member access (such as a.b.c) does not perform this check - it's up to the developer to not expose such sensitive and powerful objects directly on the scope chain.</p> <p>To resolve this error, avoid Window access.</p> </div>