diff options
| author | Igor Minar | 2013-01-08 11:47:22 -0800 | 
|---|---|---|
| committer | Igor Minar | 2013-01-08 11:51:17 -0800 | 
| commit | 4cda02860949cdd090923bca52916cc5c4ecac9a (patch) | |
| tree | 1beee5b679de6551334c325e6daa8324d352d7f4 | |
| parent | 8ecce7642b87625577ab023b5151976e41221374 (diff) | |
| download | angular.js-4cda02860949cdd090923bca52916cc5c4ecac9a.tar.bz2 | |
revert: fix(a): prevent Opera from incorrectly navigating on link click
This reverts commit c81d8176cc55cd15acae05259ead73f90a01f0b7.
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.
| -rw-r--r-- | src/ng/directive/a.js | 1 | 
1 files changed, 0 insertions, 1 deletions
| diff --git a/src/ng/directive/a.js b/src/ng/directive/a.js index 0cd04ec4..340bceb7 100644 --- a/src/ng/directive/a.js +++ b/src/ng/directive/a.js @@ -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          }        });      } | 
