remove debugging code
authorScott Baker <smbaker@gmail.com>
Tue, 15 Jul 2014 01:09:51 +0000 (18:09 -0700)
committerScott Baker <smbaker@gmail.com>
Tue, 15 Jul 2014 01:09:51 +0000 (18:09 -0700)
planetstack/core/xoslib/static/js/xoslib/xos-backbone.js

index 5403212..48d6c99 100644 (file)
@@ -82,7 +82,7 @@ XOSCollection = Backbone.Collection.extend({
     startPolling: function() {\r
         if (!this._polling) {
             collection=this;
-            setInterval(function() { console.log(collection); collection.fetch(); }, 10000);
+            setInterval(function() { collection.fetch(); }, 10000);
             this._polling=true;
             this.fetch();
         }