summaryrefslogtreecommitdiffstats
path: root/bounds1/attractor.js
diff options
context:
space:
mode:
authorDavid DeSandro <desandrocodes@gmail.com>2014-12-21 12:20:54 -0500
committerDavid DeSandro <desandrocodes@gmail.com>2014-12-21 12:20:54 -0500
commita3ff3a4a0684f77e7f3be9d0223aedd551cbeec4 (patch)
treee70f1d57be67b6a135538f2744ae660669dba2eb /bounds1/attractor.js
parent9e326512d2fb3f6b1821d2ce9ad8a62b82c475ef (diff)
downloadflickity-dev-a3ff3a4a0684f77e7f3be9d0223aedd551cbeec4.zip
flickity-dev-a3ff3a4a0684f77e7f3be9d0223aedd551cbeec4.tar.gz
flickity-dev-a3ff3a4a0684f77e7f3be9d0223aedd551cbeec4.tar.bz2
remove sandbox/
Diffstat (limited to 'bounds1/attractor.js')
-rw-r--r--bounds1/attractor.js10
1 files changed, 10 insertions, 0 deletions
diff --git a/bounds1/attractor.js b/bounds1/attractor.js
new file mode 100644
index 0000000..6531324
--- /dev/null
+++ b/bounds1/attractor.js
@@ -0,0 +1,10 @@
+( function() {
+
+function Attractor( x, y, attraction ) {
+ this.x = x;
+ this.y = y;
+}
+
+window.Attractor = Attractor;
+
+})();