I have created a directive that creates a flipbook using turn.js(which needs jquery). But none of the angular-directive(ng-click, ng-mouseover etc) works inside the flipbook html which is although getting rendered properly. Even the jquery bindings for click, mouseover etc are not working..
What is happening?
How to debug this problem?
<div ng-app="test">
<flipbook></flipbook>
</div>inside flipbook directive
controller: function($scope){ $scope.onClick = function(){
console.log("click not working"); })
$('#randomID').turn(options); })flipbook template
<div ng-click="onClick()"> </div>--
You received this message because you are subscribed to the Google Groups "AngularJS" group.
To unsubscribe from this group and stop receiving emails from it, send an email to angular+u...@googlegroups.com.
To post to this group, send email to ang...@googlegroups.com.
Visit this group at http://groups.google.com/group/angular.
For more options, visit https://groups.google.com/d/optout.
--
You received this message because you are subscribed to the Google Groups "AngularJS" group.
To unsubscribe from this group and stop receiving emails from it, send an email to angular+u...@googlegroups.com.
To post to this group, send email to ang...@googlegroups.com.
Visit this group at http://groups.google.com/group/angular.
For more options, visit https://groups.google.com/d/optout.