diff options
| author | Jules Laplace <jules@okfoc.us> | 2015-09-14 15:38:59 -0400 |
|---|---|---|
| committer | Jules Laplace <jules@okfoc.us> | 2015-09-14 15:38:59 -0400 |
| commit | 6e5cc9505e8b577228bfbe87729174c105a747fd (patch) | |
| tree | 7c6011fb7c169e152f1176af90598753d79ab086 /StoneIsland/www/js/lib/products | |
| parent | 45cb294f9adb1532e0b88f1c236c28dab18a4efe (diff) | |
stub views
Diffstat (limited to 'StoneIsland/www/js/lib/products')
| -rw-r--r-- | StoneIsland/www/js/lib/products/CollectionView.js | 11 | ||||
| -rw-r--r-- | StoneIsland/www/js/lib/products/ProductView.js | 11 | ||||
| -rw-r--r-- | StoneIsland/www/js/lib/products/Selector.js | 11 |
3 files changed, 33 insertions, 0 deletions
diff --git a/StoneIsland/www/js/lib/products/CollectionView.js b/StoneIsland/www/js/lib/products/CollectionView.js new file mode 100644 index 00000000..65ed0230 --- /dev/null +++ b/StoneIsland/www/js/lib/products/CollectionView.js @@ -0,0 +1,11 @@ +var CollectionView = View.extend({ + + el: "#collection", + + events: { + }, + + initialize: function(){ + }, + +})
\ No newline at end of file diff --git a/StoneIsland/www/js/lib/products/ProductView.js b/StoneIsland/www/js/lib/products/ProductView.js new file mode 100644 index 00000000..ef54575d --- /dev/null +++ b/StoneIsland/www/js/lib/products/ProductView.js @@ -0,0 +1,11 @@ +var ProductView = View.extend({ + + el: "#product", + + events: { + }, + + initialize: function(){ + }, + +})
\ No newline at end of file diff --git a/StoneIsland/www/js/lib/products/Selector.js b/StoneIsland/www/js/lib/products/Selector.js new file mode 100644 index 00000000..c0d59deb --- /dev/null +++ b/StoneIsland/www/js/lib/products/Selector.js @@ -0,0 +1,11 @@ +var Selector = View.extend({ + + el: "#selector", + + events: { + }, + + initialize: function(){ + }, + +})
\ No newline at end of file |
