You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

24 lines
647 B

'use strict';
angular.module('app.txs', ['ngRoute'])
.config(['$routeProvider', function($routeProvider) {
$routeProvider.when('/txs', {
templateUrl: 'views/txs/txs.html',
controller: 'TxsCtrl'
});
}])
.controller('TxsCtrl', function($scope, $http) {
//last tx
$scope.txs = [];
$http.get(urlapi + 'lasttx')
.then(function(data, status, headers, config) {
console.log(data);
$scope.txs = data.data;
}, function(data, status, headers, config) {
console.log('data error');
});
});