cleaned up extraneous console.log() debug calls

pull/705/head
Justin Richer 10 years ago
parent 9ebeeb4b79
commit 00b55343c7

@ -148,7 +148,7 @@ var ClientModel = Backbone.Model.extend({
// there's no search term, we always match
this.unset('matches', {silent: true});
console.log('no term');
//console.log('no term');
return true;
}
@ -251,7 +251,7 @@ var ClientView = Backbone.View.extend({
updateMatched:function() {
console.log(this.model.get('matches'));
//console.log(this.model.get('matches'));
if (this.model.get('matches')) {
$('.matched', this.el).show();

@ -449,7 +449,7 @@ var TokenListView = Backbone.View.extend({
$(element).hide();
}
console.log(token.get('refreshTokenId'));
//console.log(token.get('refreshTokenId'));
var refId = token.get('refreshTokenId');
if (refId != null) {
if (refreshCount[refId]) {
@ -462,7 +462,7 @@ var TokenListView = Backbone.View.extend({
});
console.log(refreshCount);
//console.log(refreshCount);
// set up pagination
var numPagesRefresh = Math.ceil(this.model.refresh.length / 10);

Loading…
Cancel
Save