EVOLUTION-MANAGER
Edit File: multidir.html
<a href='https://github.com/angular/angular.js/edit/v1.3.x/docs/content/error/$compile/multidir.ngdoc?message=docs(error%2Fmultidir)%3A%20describe%20your%20change...' class='improve-docs btn btn-primary'><i class="glyphicon glyphicon-edit"> </i>Improve this Doc</a> <h1>Error: error:multidir <div><span class='hint'>Multiple Directive Resource Contention</span></div> </h1> <div> <pre class="minerr-errmsg" error-display="Multiple directives [{0}, {1}] asking for {2} on: {3}">Multiple directives [{0}, {1}] asking for {2} on: {3}</pre> </div> <h2>Description</h2> <div class="description"> <p>This error occurs when multiple directives are applied to the same DOM element, and processing them would result in a collision or an unsupported configuration.</p> <p>To resolve this issue remove one of the directives which is causing the collision.</p> <p>Example scenarios of multiple incompatible directives applied to the same element include:</p> <ul> <li>Multiple directives requesting <code>isolated scope</code>.</li> <li>Multiple directives publishing a controller under the same name.</li> <li>Multiple directives declared with the <code>transclusion</code> option.</li> <li>Multiple directives attempting to define a <code>template</code> or <code>templateURL</code>.</li> </ul> </div>