Skip to content
This repository was archived by the owner on May 16, 2019. It is now read-only.

Commit c9c9170

Browse files
committed
code cleanup
1 parent 7f83a7e commit c9c9170

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

js/views/transactionsVw.js

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,6 @@ module.exports = baseVw.extend({
182182
},
183183

184184
setSearchList: function(targetID){
185-
186185
this.searchTransactions = new window.List(targetID, {valueNames: ['js-searchOrderID', 'js-searchStatus', 'js-searchTitle'], page: 1000});
187186
},
188187

@@ -239,7 +238,6 @@ module.exports = baseVw.extend({
239238
},
240239

241240
transactionFilter: function(e){
242-
console.log("transaction filter")
243241
var tab = $(e.target),
244242
tabTarget = tab.data("tab");
245243

@@ -301,7 +299,6 @@ module.exports = baseVw.extend({
301299
};
302300
tabCollection.sort();
303301
}
304-
console.log(localStorage.getItem('showUnpaid_'+tabName))
305302
tabCollection.each(function(model, i){
306303
if(model.get('status') > 0 || localStorage.getItem('showUnpaid_'+tabName) == "true") {
307304
if (!filterBy || filterBy == "all" || filterBy == "dateNewest" || filterBy == "dateOldest") {

0 commit comments

Comments
 (0)