diff options
Diffstat (limited to 'StoneIsland')
| -rw-r--r-- | StoneIsland/www/index.html | 2 | ||||
| -rw-r--r-- | StoneIsland/www/js/lib/blogs/ArchiveView.js | 11 | ||||
| -rw-r--r-- | StoneIsland/www/js/lib/blogs/HubView.js | 11 | ||||
| -rw-r--r-- | StoneIsland/www/js/lib/blogs/StoryView.js | 11 | ||||
| -rw-r--r-- | StoneIsland/www/js/lib/cart/CartBilling.js | 11 | ||||
| -rw-r--r-- | StoneIsland/www/js/lib/cart/CartShipping.js | 11 | ||||
| -rw-r--r-- | StoneIsland/www/js/lib/cart/CartSummary.js | 11 | ||||
| -rw-r--r-- | StoneIsland/www/js/lib/cart/CartView.js | 11 | ||||
| -rw-r--r-- | StoneIsland/www/js/lib/nav/FooterView.js | 11 | ||||
| -rw-r--r-- | StoneIsland/www/js/lib/nav/HeaderView.js | 11 | ||||
| -rw-r--r-- | StoneIsland/www/js/lib/nav/IntroView.js | 11 | ||||
| -rw-r--r-- | StoneIsland/www/js/lib/nav/LoginView.js | 11 | ||||
| -rw-r--r-- | StoneIsland/www/js/lib/nav/NavView.js | 11 | ||||
| -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 | ||||
| -rw-r--r-- | StoneIsland/www/js/lib/router.js | 11 |
17 files changed, 175 insertions, 3 deletions
diff --git a/StoneIsland/www/index.html b/StoneIsland/www/index.html index db373ea5..b042ee58 100644 --- a/StoneIsland/www/index.html +++ b/StoneIsland/www/index.html @@ -132,7 +132,7 @@ </div> - <div id="sizes"> + <div id="selector"> <span class="close"></span> <div> <span>X-SMALL</span> diff --git a/StoneIsland/www/js/lib/blogs/ArchiveView.js b/StoneIsland/www/js/lib/blogs/ArchiveView.js new file mode 100644 index 00000000..673f3b3f --- /dev/null +++ b/StoneIsland/www/js/lib/blogs/ArchiveView.js @@ -0,0 +1,11 @@ +var ArchiveView = View.extend({ + + el: "#archive", + + events: { + }, + + initialize: function(){ + }, + +})
\ No newline at end of file diff --git a/StoneIsland/www/js/lib/blogs/HubView.js b/StoneIsland/www/js/lib/blogs/HubView.js new file mode 100644 index 00000000..936c766f --- /dev/null +++ b/StoneIsland/www/js/lib/blogs/HubView.js @@ -0,0 +1,11 @@ +var HubView = View.extend({ + + el: "#hub", + + events: { + }, + + initialize: function(){ + }, + +})
\ No newline at end of file diff --git a/StoneIsland/www/js/lib/blogs/StoryView.js b/StoneIsland/www/js/lib/blogs/StoryView.js new file mode 100644 index 00000000..338f124b --- /dev/null +++ b/StoneIsland/www/js/lib/blogs/StoryView.js @@ -0,0 +1,11 @@ +var StoryView = View.extend({ + + el: "#story", + + events: { + }, + + initialize: function(){ + }, + +})
\ No newline at end of file diff --git a/StoneIsland/www/js/lib/cart/CartBilling.js b/StoneIsland/www/js/lib/cart/CartBilling.js new file mode 100644 index 00000000..f3c9cbe2 --- /dev/null +++ b/StoneIsland/www/js/lib/cart/CartBilling.js @@ -0,0 +1,11 @@ +var CartBilling = View.extend({ + + el: "#billing", + + events: { + }, + + initialize: function(){ + }, + +})
\ No newline at end of file diff --git a/StoneIsland/www/js/lib/cart/CartShipping.js b/StoneIsland/www/js/lib/cart/CartShipping.js new file mode 100644 index 00000000..beaf6bd2 --- /dev/null +++ b/StoneIsland/www/js/lib/cart/CartShipping.js @@ -0,0 +1,11 @@ +var CartShipping = View.extend({ + + el: "#shipping", + + events: { + }, + + initialize: function(){ + }, + +})
\ No newline at end of file diff --git a/StoneIsland/www/js/lib/cart/CartSummary.js b/StoneIsland/www/js/lib/cart/CartSummary.js new file mode 100644 index 00000000..37400dd0 --- /dev/null +++ b/StoneIsland/www/js/lib/cart/CartSummary.js @@ -0,0 +1,11 @@ +var CartSummary = View.extend({ + + el: "#summary", + + events: { + }, + + initialize: function(){ + }, + +})
\ No newline at end of file diff --git a/StoneIsland/www/js/lib/cart/CartView.js b/StoneIsland/www/js/lib/cart/CartView.js new file mode 100644 index 00000000..fa92fefe --- /dev/null +++ b/StoneIsland/www/js/lib/cart/CartView.js @@ -0,0 +1,11 @@ +var CartView = View.extend({ + + el: "#cart", + + events: { + }, + + initialize: function(){ + }, + +})
\ No newline at end of file diff --git a/StoneIsland/www/js/lib/nav/FooterView.js b/StoneIsland/www/js/lib/nav/FooterView.js new file mode 100644 index 00000000..15c6425f --- /dev/null +++ b/StoneIsland/www/js/lib/nav/FooterView.js @@ -0,0 +1,11 @@ +var FooterView = View.extend({ + + el: "#footer", + + events: { + }, + + initialize: function(){ + }, + +})
\ No newline at end of file diff --git a/StoneIsland/www/js/lib/nav/HeaderView.js b/StoneIsland/www/js/lib/nav/HeaderView.js new file mode 100644 index 00000000..f76001d4 --- /dev/null +++ b/StoneIsland/www/js/lib/nav/HeaderView.js @@ -0,0 +1,11 @@ +var HeaderView = View.extend({ + + el: "#header", + + events: { + }, + + initialize: function(){ + }, + +})
\ No newline at end of file diff --git a/StoneIsland/www/js/lib/nav/IntroView.js b/StoneIsland/www/js/lib/nav/IntroView.js new file mode 100644 index 00000000..21e3c2b2 --- /dev/null +++ b/StoneIsland/www/js/lib/nav/IntroView.js @@ -0,0 +1,11 @@ +var IntroView = View.extend({ + + el: "#intro", + + events: { + }, + + initialize: function(){ + }, + +})
\ No newline at end of file diff --git a/StoneIsland/www/js/lib/nav/LoginView.js b/StoneIsland/www/js/lib/nav/LoginView.js new file mode 100644 index 00000000..670fb333 --- /dev/null +++ b/StoneIsland/www/js/lib/nav/LoginView.js @@ -0,0 +1,11 @@ +var LoginView = View.extend({ + + el: "#login", + + events: { + }, + + initialize: function(){ + }, + +})
\ No newline at end of file diff --git a/StoneIsland/www/js/lib/nav/NavView.js b/StoneIsland/www/js/lib/nav/NavView.js new file mode 100644 index 00000000..57eaf357 --- /dev/null +++ b/StoneIsland/www/js/lib/nav/NavView.js @@ -0,0 +1,11 @@ +var NavView = View.extend({ + + el: "#nav", + + events: { + }, + + initialize: function(){ + }, + +})
\ No newline at end of file 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 diff --git a/StoneIsland/www/js/lib/router.js b/StoneIsland/www/js/lib/router.js index b1c33cb7..28793fe5 100644 --- a/StoneIsland/www/js/lib/router.js +++ b/StoneIsland/www/js/lib/router.js @@ -3,7 +3,14 @@ var SiteRouter = Router.extend({ el: "body", routes: { - "/": 'login', - } + "/": 'index', + }, + + initialize: function(){ + this.route() + }, + + index: function(){ + }, })
\ No newline at end of file |
