-
Notifications
You must be signed in to change notification settings - Fork 27.5k
regression: ngHref - #6273
Comments
@petebacondarwin would checking |
@IgorMinar - I don't believe this would solve the problem. As soon as you have either non-empty So I think the real issue is that we don't want to reload is if there is an If so then the obvious solution is to call Now this is a simple workaround (by creating an additional Also are there other scenarios that this doesn't fix?
|
This commit (f3de5b6) caused an old e2e test to fail (See angular/dgeni#44).
See https://github.com/angular/angular.js/blob/master/src/ng/directive/booleanAttrs.js#L72
Previously, if you had a
name
but nohref
it would still prevent the click from propagating. The performance refactor commit, referenced above, changed thea
directive so that if there is neitherhref
orname
then the click will propagate and so clicking the link would cause the page to reload.We need to decide if this previous functionality is important and if so modify the
a
directive accordingly and potentially re-activate the protractor test that was broken. If not, then we should just remove the failing protractor test altogether.FAO: @IgorMinar and @kseamon
The text was updated successfully, but these errors were encountered: