Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

Commit fd995ab

Browse files
committed
chore(tests): fix up test for protractor 1.2.0 update
These changes were made to master in 85880a6 but never made it to the 1.2.x branch.
1 parent 5f9a974 commit fd995ab

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

docs/content/guide/expression.ngdoc

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,9 @@ the method from your view. If you want to `eval()` an Angular expression yoursel
3939
## Example
4040
<example>
4141
<file name="index.html">
42-
1+2={{1+2}}
42+
<span>
43+
1+2={{1+2}}
44+
</span>
4345
</file>
4446

4547
<file name="protractor.js" type="protractor">

src/ng/directive/ngEventDirs.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,9 @@
1919
<button ng-click="count = count + 1" ng-init="count=0">
2020
Increment
2121
</button>
22-
count: {{count}}
22+
<span>
23+
count: {{count}}
24+
<span>
2325
</file>
2426
<file name="protractor.js" type="protractor">
2527
it('should check ng-click', function() {

0 commit comments

Comments
 (0)