cleaned up extraneous console.log() debug calls
parent
9ebeeb4b79
commit
00b55343c7
|
@ -148,7 +148,7 @@ var ClientModel = Backbone.Model.extend({
|
||||||
// there's no search term, we always match
|
// there's no search term, we always match
|
||||||
|
|
||||||
this.unset('matches', {silent: true});
|
this.unset('matches', {silent: true});
|
||||||
console.log('no term');
|
//console.log('no term');
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -251,7 +251,7 @@ var ClientView = Backbone.View.extend({
|
||||||
|
|
||||||
updateMatched:function() {
|
updateMatched:function() {
|
||||||
|
|
||||||
console.log(this.model.get('matches'));
|
//console.log(this.model.get('matches'));
|
||||||
|
|
||||||
if (this.model.get('matches')) {
|
if (this.model.get('matches')) {
|
||||||
$('.matched', this.el).show();
|
$('.matched', this.el).show();
|
||||||
|
|
|
@ -449,7 +449,7 @@ var TokenListView = Backbone.View.extend({
|
||||||
$(element).hide();
|
$(element).hide();
|
||||||
}
|
}
|
||||||
|
|
||||||
console.log(token.get('refreshTokenId'));
|
//console.log(token.get('refreshTokenId'));
|
||||||
var refId = token.get('refreshTokenId');
|
var refId = token.get('refreshTokenId');
|
||||||
if (refId != null) {
|
if (refId != null) {
|
||||||
if (refreshCount[refId]) {
|
if (refreshCount[refId]) {
|
||||||
|
@ -462,7 +462,7 @@ var TokenListView = Backbone.View.extend({
|
||||||
|
|
||||||
});
|
});
|
||||||
|
|
||||||
console.log(refreshCount);
|
//console.log(refreshCount);
|
||||||
|
|
||||||
// set up pagination
|
// set up pagination
|
||||||
var numPagesRefresh = Math.ceil(this.model.refresh.length / 10);
|
var numPagesRefresh = Math.ceil(this.model.refresh.length / 10);
|
||||||
|
|
Loading…
Reference in New Issue