Js Problem Issue: http://jsfiddle.net/UYf7U/
When using angularJs skew as part of compiling directives, it will duplicate any attribute properties. I.e
<a class="myClass">my link</a>
Will become
<a class="myClass myClass">my link</a>
Similarly, when using ngClick
<a ng-click="myFunction()"> my link</a>
Will become
<a ng-click="myFunction() myFunction()"> my link</a>
The violin demonstrates this, and unfortunately it falls. This is a stripped down version of what I'm trying to implement.
Is there any way around this? I posted this problem on github: https://github.com/angular/angular.js/issues/2576
When you click "Hello" in the warning, the word "clicked" should appear.
source share