//sample solution to MainController.js
app.controller('MainController',
['$scope', function($scope) {
$scope.title = 'My Own String';
$scope.promo = 'Your Own String';
$scope.products =
[
{
name: 'The Book of Trees',
price: 19,
pubdate: new Date('2014', '03', '08'),
cover: 'img/the-book-of-trees.jpg'
},
{
name: 'Program or be Programmed',
price: 8,
pubdate: new Date('2013', '08', '01'),
cover: 'img/program-or-be-programmed.jpg'
}
]
}]);
<!-- sample solution for a portion of index.html -->
<div ng-repeat="product in products" class="col-md-6">
<div class="thumbnail">
<img src="img/the-book-of-trees.jpg">
<p class="title">{{ product.name }}</p>
<p class="price">{{ product.price | currency }}</p>
<p class="date">{{ product.pubdate | date }}</p>
</div>
</div>
Quotes help make search much faster. Example: "Practice Makes Perfect"
Friday, April 17, 2015
Codecademy Filters II
//Sample solution to MainController.js
app.controller('MainController',
['$scope', function($scope) {
$scope.title = 'My Own String';
$scope.promo = 'Your Own String';
$scope.product = { name: 'The Book of Trees', price: 19, pubdate: new Date('2014', '03', '08') }
}]);
<!-- sample solution to a portion of index.html -->
<div class="main" ng-controller="MainController">
<div class="container">
<h1>{{ title }}</h1>
<h2>{{ promo }}</h2>
<div class="col-md-6">
<div class="thumbnail">
<img src="img/the-book-of-trees.jpg">
<p class="title">{{ product.name | uppercase }}</p>
<p class="price">{{ product.price | currency }}</p>
<p class="date">{{ product.pubdate | date }}</p>
</div>
</div>
</div>
</div>
app.controller('MainController',
['$scope', function($scope) {
$scope.title = 'My Own String';
$scope.promo = 'Your Own String';
$scope.product = { name: 'The Book of Trees', price: 19, pubdate: new Date('2014', '03', '08') }
}]);
<!-- sample solution to a portion of index.html -->
<div class="main" ng-controller="MainController">
<div class="container">
<h1>{{ title }}</h1>
<h2>{{ promo }}</h2>
<div class="col-md-6">
<div class="thumbnail">
<img src="img/the-book-of-trees.jpg">
<p class="title">{{ product.name | uppercase }}</p>
<p class="price">{{ product.price | currency }}</p>
<p class="date">{{ product.pubdate | date }}</p>
</div>
</div>
</div>
</div>
Codecademy FIlters I
<!-- sample solution to a portion of index.html -->
<div class="main" ng-controller="MainController">
<div class="container">
<h1>{{ title }}</h1>
<h2>{{ promo }}</h2>
<div class="col-md-6">
<div class="thumbnail">
<img src="img/the-book-of-trees.jpg">
<p class="title">{{ product.name }}</p>
<p class="price">{{ product.price | currency }}</p>
<p class="date"> </p>
</div>
</div>
</div>
</div>
<div class="main" ng-controller="MainController">
<div class="container">
<h1>{{ title }}</h1>
<h2>{{ promo }}</h2>
<div class="col-md-6">
<div class="thumbnail">
<img src="img/the-book-of-trees.jpg">
<p class="title">{{ product.name }}</p>
<p class="price">{{ product.price | currency }}</p>
<p class="date"> </p>
</div>
</div>
</div>
</div>
Codecademy Workflow
//Sample solution to MainController.js
app.controller('MainController',
['$scope', function($scope) {
$scope.title = 'My Own String';
$scope.promo = 'Your Own String';
$scope.product = { name: 'The Book of Trees', price: 19 }
}]);
<!-- sample solution to index.html -->
<div class="main" ng-controller="MainController">
<div class="container">
<h1>{{ title }}</h1>
<h2>{{ promo }}</h2>
<div class="col-md-6">
<div class="thumbnail">
<img src="img/the-book-of-trees.jpg">
<p class="title">{{ product.name }}</p>
<p class="price">{{ product.price }}</p>
<p class="date"> </p>
</div>
</div>
</div>
</div>
app.controller('MainController',
['$scope', function($scope) {
$scope.title = 'My Own String';
$scope.promo = 'Your Own String';
$scope.product = { name: 'The Book of Trees', price: 19 }
}]);
<!-- sample solution to index.html -->
<div class="main" ng-controller="MainController">
<div class="container">
<h1>{{ title }}</h1>
<h2>{{ promo }}</h2>
<div class="col-md-6">
<div class="thumbnail">
<img src="img/the-book-of-trees.jpg">
<p class="title">{{ product.name }}</p>
<p class="price">{{ product.price }}</p>
<p class="date"> </p>
</div>
</div>
</div>
</div>
Codecademy Hello AngularJS II
//Sample Solution for MainController.js
app.controller('MainController',
['$scope', function($scope) {
$scope.title = 'My Own String';
$scope.promo = 'Your Own String';
}]);
<!--Sample Solution for index.html-->
<div class="main" ng-controller="MainController">
<div class="container">
<h1>{{ title }}</h1>
<h2>{{ promo }}</h2>
</div>
</div>
app.controller('MainController',
['$scope', function($scope) {
$scope.title = 'My Own String';
$scope.promo = 'Your Own String';
}]);
<!--Sample Solution for index.html-->
<div class="main" ng-controller="MainController">
<div class="container">
<h1>{{ title }}</h1>
<h2>{{ promo }}</h2>
</div>
</div>
Subscribe to:
Posts (Atom)
This is an example of scrolling text using Javascript.
Popular Posts
-
//Sample Solution for MainController.js app.controller('MainController', ['$scope', function($scope) { $scope.title = ...
-
Question: What current is required for full scale deflection of a galvanometer having a current sensitivity of 50 micro-amperes per scale di...
-
Answer: This is the type of injury when a blow to the forehead causes a contusion of the eyeball due to the fracture of the bone at the r...
-
This is caused by the entrance of water into the air sacs which makes the lungs doughy, readily pits on pressure, exuding water and froth
-
var my_canvas=document.getElementById('canvas'); var context=my_canvas.getContext('2d');
-
#Sample Solution --- title: "Data Cleaning in R" output: html_notebook --- ```{r message=FALSE, warning=FALSE} # load libra...
-
# Update data types year_1_str = str(year_1) revenue_1_str = str(revenue_1) # Create a complete sentence combining only the string d...
-
//Sample Solution const gameState = {} function preload() { this.load.image('codey', 'https://s3.amazonaws.com/codecademy-...
-
Question: How do I startup Blend for Visual Studio once it has been installed? Answer: Click on the Windows button at the bottom left co...
-
Instructions: Count the number of rows from the flights table, where arr_time is not null and the destination is ATL. Sample Solution: S...