Skip to content

Commit a648b31

Browse files
committed
separated mini-with-style for clarity
1 parent 9c32fcc commit a648b31

File tree

7 files changed

+42
-3
lines changed

7 files changed

+42
-3
lines changed

AUTHORS

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# Below is a list of people and organizations that have contributed
2+
# to the Dart project. Names should be added to the list like so:
3+
#
4+
# If you contributed to the project(s) in this repository, and would
5+
# like your name included here, please contact [email protected] mailing list.
6+
#
7+
# Name/Organization <email address>
8+
9+
Google Inc.

LICENSE

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
Copyright 2012, the Dart project authors. All rights reserved.
2+
Redistribution and use in source and binary forms, with or without
3+
modification, are permitted provided that the following conditions are
4+
met:
5+
* Redistributions of source code must retain the above copyright
6+
notice, this list of conditions and the following disclaimer.
7+
* Redistributions in binary form must reproduce the above
8+
copyright notice, this list of conditions and the following
9+
disclaimer in the documentation and/or other materials provided
10+
with the distribution.
11+
* Neither the name of Google Inc. nor the names of its
12+
contributors may be used to endorse or promote products derived
13+
from this software without specific prior written permission.
14+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
15+
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
16+
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
17+
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
18+
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
19+
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
20+
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
21+
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
22+
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23+
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
24+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
These are small Dart samples used by the online tutorial for Dart: "A Game of Darts".
File renamed without changes.
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
import 'dart:html';
2+
3+
void main() {
4+
query('#RipVanWinkle').text = "Wake up, sleepy head!";
5+
}

web/target02/mini/mini-with-css.html renamed to web/target02/mini-with-style/mini-with-style.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@
33
<html>
44
<head>
55
<title>A Minimalist App</title>
6-
<link rel="stylesheet" href="mini.css">
6+
<link rel="stylesheet" href="mini-with-style.css">
77
</head>
88
<body>
99
<p id="RipVanWinkle"></p>
10-
<script type="application/dart" src="mini.dart"></script>
10+
<script type="application/dart" src="mini-with-style.dart"></script>
1111
<script src="http://dart.googlecode.com/svn/branches/bleeding_edge/dart/client/dart.js"></script>
1212
</body>
1313
</html>

web/target03/todo/todo.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<link rel="stylesheet" href="todo.css">
88
</head>
99
<body>
10-
<h1>Todo</h1>
10+
<h1>Procrastinator's Todo</h1>
1111

1212
<div>
1313
<input id="to-do-input" type="text" placeholder="What needs to be done?">

0 commit comments

Comments
 (0)