From 7bcbd86cdf6fa937e4eb704cfd821bee793ab968 Mon Sep 17 00:00:00 2001 From: danielgrippi Date: Fri, 20 Jan 2012 01:21:13 -0800 Subject: [PATCH] remove stray console.log --- public/javascripts/app/models/stream.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/javascripts/app/models/stream.js b/public/javascripts/app/models/stream.js index 65cd83e4e..edf9a49cb 100644 --- a/public/javascripts/app/models/stream.js +++ b/public/javascripts/app/models/stream.js @@ -10,7 +10,7 @@ app.models.Stream = Backbone.Collection.extend({ _fetching : false, fetch: function() { - if(this._fetching) { console.log('no sir'); return false; } + if(this._fetching) { return false; } var self = this // we're fetching the collection... there is probably a better way to do this