I've got AngularJS code working as part of the page where we use AJAX Control Toolkit.
After clicking a button which is inside update panel (async postback) AngularJS is not re-initialized.
How can I re initialize it after async postback?
Example which works for jQuery:
Sys.WebForms.PageRequestManager.getInstance().add_endRequest(function () {
//re initialize js jQuery code
});