I am using a Jquery image browsing plugin, inside an angularjs website.
The content is initialized after the page is done loading.
$scope.$on('$viewContentLoaded', function() {..
And within the callback function , i am also loading the control-panel for image manipulations.Which is separate from browser-plugin.
Everything from this point needs to continue as AngularJs , but ng-include doesn't work. I cannot see any html being loaded.
$(".imageBrowserPlugin").append("<div id='imageControlPanel' ><div ng-controller='imageController' ng-include=''templates/image-controller.html''> </div></div>");
How can i accomplish this or how can i late-bind the content back to angular js ?