I was using jquery ealier before starting to use angularjs.
Earlier I head this:-
$('[data-action^="backtop"]').click(function(){
});
and now after integrating angular this does not work on click.
Is there a way i can correct without having to change everything to directives.
$(document).on('click','[data-action=^="backdrop"]',function(){})