flocore-node/public/js/controllers/index.js
2014-01-14 16:56:02 -03:00

15 lines
343 B
JavaScript
Executable File

'use strict';
angular.module('mystery.system').controller('IndexController', ['$scope', 'Global', 'socket', function($scope, Global, socket) {
$scope.global = Global;
socket.on('tx', function(data) {
var tx = data;
console.log('Transaction received! ' + tx.txid);
$scope.txs.unshift(tx.txid);
});
$scope.txs = [];
}]);