EVOLUTION-MANAGER
Edit File: unsafe.html
<a href='https://github.com/angular/angular.js/edit/v1.3.x/docs/content/error/$sce/unsafe.ngdoc?message=docs(error%2Funsafe)%3A%20describe%20your%20change...' class='improve-docs btn btn-primary'><i class="glyphicon glyphicon-edit"> </i>Improve this Doc</a> <h1>Error: error:unsafe <div><span class='hint'>Require a safe/trusted value</span></div> </h1> <div> <pre class="minerr-errmsg" error-display="Attempting to use an unsafe value in a safe context.">Attempting to use an unsafe value in a safe context.</pre> </div> <h2>Description</h2> <div class="description"> <p>The value provided for use in a specific context was not found to be safe/trusted for use.</p> <p>Angular's <a href="api/ng/service/$sce">Strict Contextual Escaping (SCE)</a> mode (enabled by default), requires bindings in certain contexts to result in a value that is trusted as safe for use in such a context. (e.g. loading an Angular template from a URL requires that the URL is one considered safe for loading resources.)</p> <p>This helps prevent XSS and other security issues. Read more at <a href="api/ng/service/$sce">Strict Contextual Escaping (SCE)</a></p> <p>You may want to include the ngSanitize module to use the automatic sanitizing.</p> </div>