Merge pull request #305 from cmgustavo/bug/01sync-info-box

#296 fixed sync info box when stop and then start bitcoind
This commit is contained in:
Mario Colque 2014-02-13 18:33:24 -02:00
commit d1fdf3d308
1 changed files with 4 additions and 0 deletions

View File

@ -41,4 +41,8 @@ angular.module('insight.status').controller('StatusController',
_onSyncUpdate(sync);
});
});
socket.on('status', function(sync) {
_onSyncUpdate(sync);
});
});