Angular 1.2 replaced always
with finally
on promises.
So what was once this:
$http.get('/myurl').always(handler);
Now needs to be this:
$http.get('/myurl').finally(handler);
But I am getting the error "expected identifier" in IE8. How can I make this work in IE8?