1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2024-11-30 11:24:21 +01:00
fab-manager/app/assets/javascripts/controllers/wallet.coffee

13 lines
329 B
CoffeeScript
Raw Normal View History

2016-07-18 18:16:54 +02:00
'use strict'
2016-07-05 13:20:25 +02:00
Application.Controllers.controller "WalletController", ['$scope', 'walletPromise', 'transactionsPromise', ($scope, walletPromise, transactionsPromise)->
2016-07-18 18:16:54 +02:00
### PUBLIC SCOPE ###
## current user wallet
$scope.wallet = walletPromise
2016-07-05 13:20:25 +02:00
## current wallet transactions
$scope.transactions = transactionsPromise
2016-07-18 18:16:54 +02:00
]