summaryrefslogtreecommitdiffstats
path: root/cells2/cell.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 /cells2/cell.js
parent9e326512d2fb3f6b1821d2ce9ad8a62b82c475ef (diff)
downloadflickity-dev-a3ff3a4a0684f77e7f3be9d0223aedd551cbeec4.zip
flickity-dev-a3ff3a4a0684f77e7f3be9d0223aedd551cbeec4.tar.gz
flickity-dev-a3ff3a4a0684f77e7f3be9d0223aedd551cbeec4.tar.bz2
remove sandbox/
Diffstat (limited to 'cells2/cell.js')
-rw-r--r--cells2/cell.js12
1 files changed, 12 insertions, 0 deletions
diff --git a/cells2/cell.js b/cells2/cell.js
new file mode 100644
index 0000000..7762f95
--- /dev/null
+++ b/cells2/cell.js
@@ -0,0 +1,12 @@
+( function() {
+
+function Cell( props ) {
+ this.width = props.width;
+ this.height = props.height;
+ this.x = props.x;
+ this.index = props.index;
+}
+
+window.Cell = Cell;
+
+})();