Reputation: 10902
I tried this modified version of jquery function:
$scope.link_clicked = function(e) {
if (e.button == 0) {
$("#spinner_bg").css("display", "block");
}
};
But it gives error: "Cannot read property 'button' of undefined..." :/
Upvotes: 0
Views: 1361