revert: fix(a): prevent Opera from incorrectly navigating on link click

This reverts commit c81d8176cc.

This commit causes several issues (#1651, #1674, #1662) and doesn't even
contain a test that proves that anything on Opera got actually fixed.

If the original Opera resurfaces, we'll fix it properly.
This commit is contained in:
Igor Minar 2013-01-08 11:47:22 -08:00
parent 2b0978b07c
commit 14948cf5d9

View file

@ -27,7 +27,6 @@ var htmlAnchorDirective = valueFn({
// if we have no href url, then don't navigate anywhere.
if (!element.attr('href')) {
event.preventDefault();
return false; // Needed for opera
}
});
}