diff options
author | Wilson Page <wilsonpage@me.com> | 2013-10-05 10:16:17 +0100 |
---|---|---|
committer | Wilson Page <wilsonpage@me.com> | 2013-10-05 10:16:17 +0100 |
commit | a273bcd66334fcada5e7641bf32ee6a3a9fde535 (patch) | |
tree | 0ae3c04878429c9fd5e8bad79fc0865495154b79 | |
parent | 4a931c1a99f7997fcb371e74428c3b1238684b67 (diff) | |
download | fastdom-a273bcd66334fcada5e7641bf32ee6a3a9fde535.zip fastdom-a273bcd66334fcada5e7641bf32ee6a3a9fde535.tar.gz fastdom-a273bcd66334fcada5e7641bf32ee6a3a9fde535.tar.bz2 |
Simplify directory structure
-rw-r--r-- | README.md | 2 | ||||
-rw-r--r-- | bower.json | 2 | ||||
-rw-r--r-- | component.json | 2 | ||||
-rw-r--r-- | examples/aspect-ratio.html | 2 | ||||
-rw-r--r-- | index.js (renamed from lib/fastdom.js) | 0 | ||||
-rw-r--r-- | package.json | 2 | ||||
-rw-r--r-- | test/index.html | 2 |
7 files changed, 6 insertions, 6 deletions
@@ -49,7 +49,7 @@ $ bower install fastdom or -Old fashioned [download](http://github.com/wilsonpage/fastdom/raw/master/lib/fastdom.js). +Old fashioned [download](http://github.com/wilsonpage/fastdom/raw/master/index.js). ## How it works @@ -4,7 +4,7 @@ "version": "0.7.0", "main": "lib/fastdom.js", "scripts": [ - "lib/fastdom.js" + "index.js" ], "ignore": [ "examples/", diff --git a/component.json b/component.json index 792072c..a83dad7 100644 --- a/component.json +++ b/component.json @@ -4,7 +4,7 @@ "version": "0.7.0", "main": "lib/fastdom.js", "scripts": [ - "lib/fastdom.js" + "index.js" ], "ignore": [ "examples/" diff --git a/examples/aspect-ratio.html b/examples/aspect-ratio.html index 4b40419..25ee73e 100644 --- a/examples/aspect-ratio.html +++ b/examples/aspect-ratio.html @@ -24,7 +24,7 @@ <button id="resetbtn">reset</button> <section id="perf"></section> <section id="container"></section> - <script type="text/javascript" src="../lib/fastdom.js"></script> + <script type="text/javascript" src="../index.js"></script> <script> var n = input.value; var start; diff --git a/lib/fastdom.js b/index.js index dbf2a24..dbf2a24 100644 --- a/lib/fastdom.js +++ b/index.js diff --git a/package.json b/package.json index e9c77cd..5db7fba 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "fastdom", "description": "Eliminates layout thrashing by batching DOM read/write operations", "version": "0.7.0", - "main": "lib/fastdom.js", + "main": "index.js", "scripts": { "test": "./node_modules/.bin/mocha-phantomjs test/index.html" }, diff --git a/test/index.html b/test/index.html index 00cdb4d..4257f62 100644 --- a/test/index.html +++ b/test/index.html @@ -13,7 +13,7 @@ <script src="../node_modules/sinon/lib/sinon/match.js"></script> <script src="../node_modules/sinon/lib/sinon/spy.js"></script> <script>mocha.setup('tdd')</script> - <script src="../lib/fastdom.js"></script> + <script src="../index.js"></script> <script src="setup.js"></script> <script src="test.set.js"></script> <script src="test.clear.js"></script> |