Advertisement
Guest User

Untitled

a guest
Oct 23rd, 2014
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. socket.emit('getDoctors');
  2. socket.on('doctors', function( username ) {
  3.    
  4. });
  5. socket.emit('schedule', {user_id: doctorId, ime: ime, mobile: mob, msg: message});
  6. socket.on('scheduled', function() {
  7.    
  8. });
  9. socket.emit('getAppointments', user_id);
  10. socket.on('appointments', function( data ) {
  11.     app_id, name, mobile, msg
  12. });
  13. socket.emit('removeAppointments', app_id);
  14. socket.on('appRemoved', function() {
  15.  
  16. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement