flosight-api/public/js/controllers/index.js
2014-01-14 15:20:59 -03:00

15 lines
340 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.push(tx.txid);
});
$scope.txs = [];
}]);