Sign in
android
/
platform
/
external
/
cherry
/
d39d06eb32ac4f7e549ce2ead7dc4c44f9c3f50e
/
.
/
third_party
/
angular
/
docs
/
examples
/
example-example72
/
script.js
blob: fdfe17ea02a1029a791788ced4c99c7eb2fdc79e [
file
]
function
LocationController
(
$scope
,
$location
)
{
$scope
.
$watch
(
'locationPath'
,
function
(
path
)
{
$location
.
path
(
path
);
});
$scope
.
$watch
(
function
()
{
return
$location
.
path
();
},
function
(
path
)
{
$scope
.
locationPath
=
path
;
});
}