UNPKG
mc-core
Version:
latest (1.0.0-alpha.1)
1.0.0-alpha.1
0.0.6
0.0.5
0.0.4
0.0.3
0.0.2
0.0.1
Deployments made simple
github.com/space-race/mc-core
space-race/mc-core
mc-core
/
ui
/
assets
/
js
/
controllers
/
application-builds.js
13 lines
(7 loc)
•
216 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
export
default
[
'$scope'
,
'$http'
,
function
(
$scope, $http
) { $scope.
example
=
'Woot!'
$http.
get
(
'/api/user'
).
then
(
function
(
response
) {
console
.
log
(
'got user response:'
)
console
.
log
(response) }) }]