EVOLUTION-MANAGER
Edit File: app.js
(function(angular) { 'use strict'; var myApp = angular.module('spicyApp2', []); myApp.controller('SpicyController', ['$scope', function($scope) { $scope.customSpice = "wasabi"; $scope.spice = 'very'; $scope.spicy = function(spice) { $scope.spice = spice; }; }]); })(window.angular);