]> git.r.bdr.sh - rbdr/cologne/commitdiff
Uses proper socket.io dependency
authorBen Beltran <redacted>
Wed, 18 Sep 2013 16:38:58 +0000 (11:38 -0500)
committerBen Beltran <redacted>
Wed, 18 Sep 2013 16:38:58 +0000 (11:38 -0500)
lib/loggers/socket.js
package.json

index ea9d94459c346f9d72d87162197bf06bb5f53434..b057d77726e8b4b25ae238392f4f3c83d5de354b 100644 (file)
@@ -4,6 +4,7 @@
   // Load up dependencies
   if (typeof require === 'function') {
     var Ne = require('neon');
   // Load up dependencies
   if (typeof require === 'function') {
     var Ne = require('neon');
+    var ioClient = require('socket.io-client');
     Module = Ne.Module;
     Class = Ne.Class;
   } else {
     Module = Ne.Module;
     Class = Ne.Class;
   } else {
       init : function (config) {
         var logger = this;
 
       init : function (config) {
         var logger = this;
 
-        logger.socketIo = global.io
-
         if (config) {
           for (property in config) {
             logger[property] = config[property];
           }
         }
 
         if (config) {
           for (property in config) {
             logger[property] = config[property];
           }
         }
 
-        if (logger.socketIo) {
-          logger._socket = logger.socketIo.connect(logger.serverUrl);
+        if (!logger.socketIo) {
+          logger.socketIo = ioClient;
         }
         }
+
+        logger._socket = logger.socketIo.connect(logger.serverUrl);
       },
 
       log : function () {
       },
 
       log : function () {
index 66c40d6202e2f6b8eece9ae05faf3b3cd6e35733..68ce318dc1f54eb730942a7cf04ebef81b584c17 100644 (file)
       "url" : "http://github.com/ktlacaelel"
     }
   ],
       "url" : "http://github.com/ktlacaelel"
     }
   ],
-  "version" : "0.1.8",
+  "version" : "0.1.9",
   "dependencies" : {
     "neon" : "1.0.x",
   "dependencies" : {
     "neon" : "1.0.x",
-    "socket.io" : "0.9.x",
+    "socket.io-client" : "0.9.x",
     "colors" : "0.x.x",
     "emailjs" : "0.3.x",
     "microtime" : "0.3.x"
     "colors" : "0.x.x",
     "emailjs" : "0.3.x",
     "microtime" : "0.3.x"