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
(function(angular) { | |
"use strict"; | |
var app = angular.module('MyStore', ['ngCookies', 'ngMessages', 'ui.router']); | |
app.value('config', { | |
/* Create a merchant account and add the seller email below: | |
* https://www.paypal.com/webapps/mpp/merchant | |
*/ |
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
// Require mongoose dependency | |
var mongoose = require('mongoose'); | |
var bcrypt = require('bcrypt-nodejs'); | |
var userSchema = new mongoose.Schema({ | |
email: { type: String, unique: true }, | |
password: String | |
}); | |
var User = mongoose.model('User', userSchema); |
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
(function(angular) { | |
var app = angular.module('MyStore'); | |
// Inject in the CartService | |
app.controller('CartController', function($scope) { | |
// Set the items on the scope to the items in the CartService | |
$scope.items; |
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
{ | |
"directory": "public/bower_components" | |
} |
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
(function(angular) { | |
'use strict'; | |
var app = angular.module('MyStore'); | |
app.directive('msFeaturedProduct', function() { | |
return { | |
restrict: 'E', | |
replace: true, |
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
$scope.displayType = 'grid'; | |
$scope.toggleDisplay = function() { | |
$scope.displayType = ($scope.displayType === 'grid') ? 'list' : 'grid' | |
} |
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
[ | |
{ "id": 1, "name": "Color", "properties": [ | |
{ "id": 0, "name": "Blue", "selected": false }, | |
{ "id": 1, "name": "Red", "selected": false }, | |
{ "id": 2, "name": "Green", "selected": false } | |
] }, | |
{ "id": 2, "name": "Gender", "properties": [ | |
{ "id": 3, "name": "Female", "selected": false }, | |
{ "id": 4, "name": "Male", "selected": false }, | |
{ "id": 5, "name": "Unisex", "selected": false } |
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
#Update team name | |
UPDATE `jos_ibike_team` | |
SET name = 'RideSunnyside' | |
WHERE name = 'Ridesunnyside' |
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
# REPLACE THE BRACKETS WITH THE APPROPRIATE VALUES | |
# For example, WHERE user.email = '[the email address]' | |
# becomes WHERE user.email = '[email protected]' | |
# This SELECT query returns the email, pledge and pledge id | |
# for the user. You will use the pledge id returned from this | |
# query to update the pledge in the UPDATE query below | |
SELECT user.email, pledge.pledge, pledge.id | |
FROM `jos_users` as user |