flosight-api/public/js/controllers/index.js
2014-01-13 18:13:59 -03:00

16 lines
346 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) {
console.log(data);
});
});