diff options
author | Wilson Page <wilsonpage@me.com> | 2013-10-12 13:41:41 -0700 |
---|---|---|
committer | Wilson Page <wilsonpage@me.com> | 2013-10-12 13:41:41 -0700 |
commit | cf8f3ad94d43a25c57b1c4e5628c86c12e939383 (patch) | |
tree | 255b5b586fa4c7d9da54a043cb216b19d1d58226 /index.js | |
parent | 65d2a275a30951910465b37a0ac26790d59d699b (diff) | |
parent | 0343f75622d85330925d35b6193cd728699b7477 (diff) | |
download | fastdom-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.js | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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; |