Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
organize html files
  • Loading branch information
kripken committed Aug 2, 2011
1 parent 3e2a4c1 commit a8afd4d
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions README.markdown
Expand Up @@ -27,7 +27,7 @@ Very simple! Do this:

`speak('hello world!')`

See demo.min.html for a simple 'hello world', and demo.full.html for
See helloworld.html for a simple 'hello world', and demo.html for
a more detailed example.


Expand Down Expand Up @@ -66,6 +66,6 @@ That will generate speak.full.js, which is the unminified version. It is
recommended to minify that (for example, using the closure compiler). speak.js
in this repo is minified.

demo.full.html uses speak.full.js (the unminified version) while demo.min.js
uses speak.js (the minified version).
demo.html uses speak.js (the minified version) while helloworld.js
uses speak.full.js (the unminified version - useful during development).

2 changes: 1 addition & 1 deletion demo.full.html → demo.html
Expand Up @@ -4,7 +4,7 @@
<script>
// This demo is licensed under the GNU GPL.
</script>
<script src="speak.full.js"></script>
<script src="speak.js"></script>
</head>
<body>
<h1>speak.js</h1>
Expand Down
2 changes: 1 addition & 1 deletion demo.min.html → helloworld.html
@@ -1,6 +1,6 @@
<html>
<head>
<script src="speak.js"></script>
<script src="speak.full.js"></script>
</head>
<body>
<button onclick="speak('hello world')">Talk</button>
Expand Down

0 comments on commit a8afd4d

Please sign in to comment.