Sign in
apache
/
netbeans
/
refs/heads/release190
/
.
/
webcommon
/
html.angular
/
test
/
unit
/
data
/
completion
/
simpleController
/
Controllers.js
blob: 6d51c2a3b18a28eed64dfbe4e6a4c7b43b6dd260 [
file
] [
log
] [
blame
]
'use strict'
;
/* Controllers */
function
PhoneListCtrl
(
$scope
,
$http
)
{
$http
.
get
(
'phones/phones.json'
).
success
(
function
(
data
)
{
$scope
.
phones
=
data
;
});
$scope
.
orderProp
=
'age'
;
}