Skip to content
This repository has been archived by the owner on Mar 13, 2018. It is now read-only.

8/15 master -> stable #24

Merged
merged 3 commits into from
Aug 15, 2013
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .d8_history

This file was deleted.

4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
## Learn the tech

### Why ObserveJS?
### Why observe-js?

ObserveJS is a library for observing changes in JavaScript data. It exposes a high-level API and uses Object.observe if available, and otherwise performs dirty-checking.
observe-js is a library for observing changes in JavaScript data. It exposes a high-level API and uses Object.observe if available, and otherwise performs dirty-checking.

### Basic Usage

Expand Down
2 changes: 1 addition & 1 deletion benchmark/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<head>
<title>Observation Benchmarks</title>
<meta charset="utf-8">
<script src="../change_summary.js"></script>
<script src="../src/observe.js"></script>
<script src="chartjs/Chart.js"></script>
<script src="benchmark.js"></script>
<script src="observation_benchmark.js"></script>
Expand Down
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"name": "ChangeSummary",
"name": "ObserveJS",
"version": "0.0.0",
"description": "ChangeSummary =============",
"main": "change_summary.js",
"description": "ObserveJS =============",
"main": "observe.js",
"directories": {
"example": "examples",
"test": "tests"
Expand All @@ -12,7 +12,7 @@
},
"repository": {
"type": "git",
"url": "https://github.com/rafaelw/ChangeSummary.git"
"url": "https://github.com/Polymer/ObserveJS.git"
},
"author": "",
"license": "BSD",
Expand Down
File renamed without changes.
5 changes: 2 additions & 3 deletions tests/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,12 @@
limitations under the License.
-->
<head>
<title>ChangeSummary Tests</title>
<title>observe-js tests</title>
<meta charset="utf-8">
<link rel="stylesheet" href="../node_modules/mocha/mocha.css">
<script src="../node_modules/chai/chai.js"></script>
<script src="../node_modules/mocha/mocha.js"></script>
<script src="../planner.js"></script>
<script src="../change_summary.js"></script>
<script src="../src/observe.js"></script>
<script src="../util/array_reduction.js"></script>
<script>
mocha.setup({
Expand Down
2 changes: 1 addition & 1 deletion tests/planner.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<link rel="stylesheet" href="../node_modules/mocha/mocha.css">
<script src="../node_modules/chai/chai.js"></script>
<script src="../node_modules/mocha/mocha.js"></script>
<script src="../planner.js"></script>
<script src="../util/planner.js"></script>
<script>
mocha.setup({
ui: 'tdd',
Expand Down
File renamed without changes.