Skip to content
This repository has been archived by the owner on Jun 4, 2023. It is now read-only.

Commit

Permalink
receiver: remove testing code
Browse files Browse the repository at this point in the history
To test the previous commit, some code was removed. Put it back.
  • Loading branch information
vincentbernat committed Sep 25, 2015
1 parent ace4bf6 commit 5b97f34
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions app/scripts/receiver.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,9 @@
(function(window, undefined) {
'use strict';

var errors = require('./receiver/errors'),
var socketio = require('./receiver/socketio'),
errors = require('./receiver/errors'),
supervisor = require('./receiver/supervisor'),
console = require('./receiver/console'),
benchmark = require('./receiver/benchmark'),
document = window.document;
Expand All @@ -16,10 +18,10 @@
document.addEventListener('DOMContentLoaded', function() {
benchmark.done(function() {
document.querySelector('.show').classList.add('loading');
// supervisor.ready();
supervisor.ready();
// OK, ready, connect to socket.io
console.log('[Dashkiosk] dashkiosk ready, connect to socket.io server');
// socketio.connect();
socketio.connect();
});
});

Expand Down

0 comments on commit 5b97f34

Please sign in to comment.