Skip to content
This repository was archived by the owner on Feb 22, 2018. It is now read-only.

Commit e44e207

Browse files
committed
Merge pull request #1 from angular/master
merge in upstream
2 parents c8c19fb + 49c1b65 commit e44e207

File tree

127 files changed

+2293
-345
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

127 files changed

+2293
-345
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,4 @@ packages
44
pubspec.lock
55
.idea
66
node_modules
7+
build

Chapter_01/README

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
"Hello World" AngularDart application
2+

Chapter_01/pubspec.yaml

Lines changed: 0 additions & 1 deletion
This file was deleted.

Chapter_01/pubspec.yaml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
name: angular_dart_demo
2+
version: 0.0.1
3+
dependencies:
4+
angular: any
5+
6+
dev_dependencies:
7+
unittest: any

Chapter_01/index.html renamed to Chapter_01/web/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@
66
<body>
77

88
<h3>Hello {{name}}!</h3>
9-
name: <input type="text" ng-model="name">
9+
Name: <input type="text" ng-model="name">
1010

1111
<script type="application/dart" src="main.dart"></script>
12-
<script src="packages/browser/dart.js"></script>
12+
<script type="text/javascript" src="packages/browser/dart.js"></script>
1313
</body>
1414
</html>
File renamed without changes.

Chapter_02/README

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
Recipe Book AngularDart application
2+
Illustrates how to create a basic Angular controller
3+

Chapter_02/pubspec.yaml

Lines changed: 0 additions & 1 deletion
This file was deleted.

Chapter_02/pubspec.yaml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
name: angular_dart_demo
2+
version: 0.0.1
3+
dependencies:
4+
angular: any
5+
browser: any
6+
js: any
7+
8+
dev_dependencies:
9+
unittest: any
File renamed without changes.

0 commit comments

Comments
 (0)