I have the following piece of code:
<ul ui-sortable ng-model="list">
<!-- onDragStartHandler() is a global function, not part of $scope -->
<li draggable ondragstart="onDragStartHandler();" ng-repeat="item in list">Item: {{item}}</li>
</ul>
When ui-sortable (github) directive is used, the code attached to ondragstart is not executed at all.
You can see this here.
Any ideas how this event handler can be invoked as well?