This repository was archived by the owner on Feb 22, 2018. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 1
- name : angular-dart-demo
1
+ name : angular_dart_demo
2
2
version : 0.0.1
3
3
dependencies :
4
+ angular :
5
+ path : ..
4
6
browser : any
5
- unittest : any
6
7
js : any
7
- angular :
8
- path : ..
8
+ unittest : any
Original file line number Diff line number Diff line change @@ -66,7 +66,7 @@ class Event {
66
66
Scope currentScope;
67
67
bool propagationStopped = false ;
68
68
bool defaultPrevented = false ;
69
-
69
+
70
70
Event (this .name, this .targetScope);
71
71
72
72
stopPropagation () => propagationStopped = true ;
@@ -245,7 +245,7 @@ class Scope implements Map {
245
245
} else {
246
246
next = current._nextSibling;
247
247
if (next == null ) {
248
- while (current != = target && (next = current._nextSibling) == null ) {
248
+ while (current != target && (next = current._nextSibling) == null ) {
249
249
current = current.$parent;
250
250
}
251
251
}
@@ -386,7 +386,7 @@ class Scope implements Map {
386
386
} else {
387
387
next = current._nextSibling;
388
388
if (next == null ) {
389
- while (current != = target && (next = current._nextSibling) == null ) {
389
+ while (current != target && (next = current._nextSibling) == null ) {
390
390
current = current.$parent;
391
391
}
392
392
}
You can’t perform that action at this time.
0 commit comments