bitcore-node-zcash/public/js/controllers/index.js

17 lines
393 B
JavaScript
Executable File

'use strict';
angular.module('mystery.system').controller('IndexController', ['$scope', 'Global', 'Index', function($scope, Global, Index) {
$scope.global = Global;
$scope.index = Index;
}]);
$(document).ready(function() {
var socket = io.connect('http://localhost');
socket.on('tx', function(data) {
var tx = data;
console.log('Transaction received! '+tx.txid);
});
});