I have the link with class 'disabled'. I don't want that ember process click on this link.
In jQuery I always write:
$(document).ready(() ->
$("body").on("click", "*[disabled], .disabled", (e) ->
e.preventDefault()
e.stopPropagation()
)
)
But this not working with ember. How can I do this globally for ember?