Sign in
android
/
platform
/
external
/
cherry
/
main
/
.
/
third_party
/
angular
/
docs
/
examples
/
example-example77
/
app.js
blob: 7f190a715abf6822a4e481810812232719af16ff [
file
]
var
myApp
=
angular
.
module
(
'spicyApp2'
,
[]);
myApp
.
controller
(
'SpicyController'
,
[
'$scope'
,
function
(
$scope
)
{
$scope
.
customSpice
=
"wasabi"
;
$scope
.
spice
=
'very'
;
$scope
.
spicy
=
function
(
spice
)
{
$scope
.
spice
=
spice
;
};
}]);