summaryrefslogtreecommitdiffstats
path: root/index.js
diff options
context:
space:
mode:
authorWilson Page <wilsonpage@me.com>2013-10-12 13:41:41 -0700
committerWilson Page <wilsonpage@me.com>2013-10-12 13:41:41 -0700
commitcf8f3ad94d43a25c57b1c4e5628c86c12e939383 (patch)
tree255b5b586fa4c7d9da54a043cb216b19d1d58226 /index.js
parent65d2a275a30951910465b37a0ac26790d59d699b (diff)
parent0343f75622d85330925d35b6193cd728699b7477 (diff)
downloadfastdom-cf8f3ad94d43a25c57b1c4e5628c86c12e939383.zip
fastdom-cf8f3ad94d43a25c57b1c4e5628c86c12e939383.tar.gz
fastdom-cf8f3ad94d43a25c57b1c4e5628c86c12e939383.tar.bz2
Merge pull request #31 from Krinkle/cleanup
Minor clean up and setting up JSHint
Diffstat (limited to 'index.js')
-rw-r--r--index.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/index.js b/index.js
index 6be22f8..0f657b5 100644
--- a/index.js
+++ b/index.js
@@ -114,7 +114,7 @@
var self = this;
// If we are currently writing, we don't
- // need to scedule a new frame as this
+ // need to schedule a new frame as this
// job will be emptied from the write queue
if (mode === 'writing' && type === 'write') return;
@@ -280,7 +280,7 @@
if (typeof module !== 'undefined' && module.exports) {
module.exports = fastdom;
- } else if (typeof define === "function" && define.amd) {
+ } else if (typeof define === 'function' && define.amd) {
define(function(){ return fastdom; });
} else {
window['fastdom'] = fastdom;