Sign in
android
/
platform
/
external
/
cherry
/
main
/
.
/
third_party
/
angular
/
docs
/
examples
/
example-example94
/
script.js
blob: 84f2c6bb1b09c425189a1aa8871d968918ef54f1 [
file
]
function
Cntl1
(
$window
,
$scope
){
$scope
.
name
=
'World'
;
$scope
.
greet
=
function
()
{
$window
.
alert
(
'Hello '
+
$scope
.
name
);
};
}