remove stray console.log

This commit is contained in:
danielgrippi 2012-01-20 01:21:13 -08:00
parent b4e0483a18
commit 7bcbd86cdf

View file

@ -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