-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
19 changed files
with
622 additions
and
513 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
'use strict'; | ||
|
||
module.exports = [ | ||
'$scope', | ||
function( | ||
$scope) { | ||
|
||
$scope.awesomeThings = [ | ||
'HTML5 Boilerplate', | ||
'AngularJS', | ||
'Karma' | ||
]; | ||
|
||
} | ||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
'use strict'; | ||
|
||
module.exports = [ | ||
'$scope', | ||
function( | ||
$scope) { | ||
|
||
$scope.awesomeThings = [ | ||
'HTML5 Boilerplate', | ||
'AngularJS', | ||
'Karma' | ||
]; | ||
|
||
} | ||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,5 @@ | ||
'use strict'; | ||
|
||
module.exports = [ | ||
function() { | ||
} | ||
function() {} | ||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"about": { | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"contact": { | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
<p>This is the about view.</p> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,45 +1,43 @@ | ||
<div class="container"> | ||
<section class="category"> | ||
<h1>Category</h1> | ||
<dl> | ||
<dt>Id</dt> | ||
<dd>{{category.id}}</dd> | ||
<dt>Name</dt> | ||
<dd>{{category.name}}</dd> | ||
</dl> | ||
</section> | ||
<section class="category-subcategories"> | ||
<h2>Sub-Categories</h2> | ||
<dl data-ng-repeat="subCategory in category.subCategories"> | ||
<dt>Id</dt> | ||
<dd>{{subCategory.id}}</dd> | ||
<dt>Name</dt> | ||
<dd>{{subCategory.name}}</dd> | ||
</dl> | ||
</section> | ||
<section class="category-products"> | ||
<h2>Products</h2> | ||
<dl data-ng-repeat="product in category.products"> | ||
<dt>Id</dt> | ||
<dd>{{product.id}}</dd> | ||
<dt>Name</dt> | ||
<dd>{{product.name}}</dd> | ||
<dt>Url</dt> | ||
<dd>{{product.url}}</dd> | ||
<dt>Main Image Url</dt> | ||
<dd>{{product.mainImageUrl}}</dd> | ||
<dt>Code</dt> | ||
<dd>{{product.code}}</dd> | ||
<dt>Is On Sale</dt> | ||
<dd>{{product.isOnSale}}</dd> | ||
<dt>Is New</dt> | ||
<dd>{{product.isNew}}</dd> | ||
<dt>Regular Price</dt> | ||
<dd>{{product.pricing.regularPrice}}</dd> | ||
<dt>Sale Price</dt> | ||
<dd>{{product.pricing.salePrice}}</dd> | ||
<dt>List Price</dt> | ||
<dd>{{product.pricing.listPrice}}</dd> | ||
</dl> | ||
</section> | ||
</div> | ||
<section class="category"> | ||
<h1>Category</h1> | ||
<dl> | ||
<dt>Id</dt> | ||
<dd>{{category.id}}</dd> | ||
<dt>Name</dt> | ||
<dd>{{category.name}}</dd> | ||
</dl> | ||
</section> | ||
<section class="category-subcategories"> | ||
<h2>Sub-Categories</h2> | ||
<dl data-ng-repeat="subCategory in category.subCategories"> | ||
<dt>Id</dt> | ||
<dd>{{subCategory.id}}</dd> | ||
<dt>Name</dt> | ||
<dd>{{subCategory.name}}</dd> | ||
</dl> | ||
</section> | ||
<section class="category-products"> | ||
<h2>Products</h2> | ||
<dl data-ng-repeat="product in category.products"> | ||
<dt>Id</dt> | ||
<dd>{{product.id}}</dd> | ||
<dt>Name</dt> | ||
<dd>{{product.name}}</dd> | ||
<dt>Url</dt> | ||
<dd>{{product.url}}</dd> | ||
<dt>Main Image Url</dt> | ||
<dd>{{product.mainImageUrl}}</dd> | ||
<dt>Code</dt> | ||
<dd>{{product.code}}</dd> | ||
<dt>Is On Sale</dt> | ||
<dd>{{product.isOnSale}}</dd> | ||
<dt>Is New</dt> | ||
<dd>{{product.isNew}}</dd> | ||
<dt>Regular Price</dt> | ||
<dd>{{product.pricing.regularPrice}}</dd> | ||
<dt>Sale Price</dt> | ||
<dd>{{product.pricing.salePrice}}</dd> | ||
<dt>List Price</dt> | ||
<dd>{{product.pricing.listPrice}}</dd> | ||
</dl> | ||
</section> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
<p>This is the contact view.</p> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1 @@ | ||
<div class="container"> | ||
<p>This is the home view.</p> | ||
</div> | ||
<p>This is the home view.</p> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
<div data-ui-view=""></div> | ||
<div class="container" data-ui-view=""></div> |
Oops, something went wrong.