Remove debug logs

bf9ef8fa0fd56525f004ae6375d54a439edf1d91

Cohee <18619528+Cohee1207@users.noreply.github.com>

1 files changed, +0 -2Showing whitespace changes
public/script.js+0 -2
@@ -1528,7 +1528,6 @@ export async function printCharacters(fullRefresh = false) {
1528 const entities = getEntitiesList({ doFilter: true });1528 const entities = getEntitiesList({ doFilter: true });
15291529
1530 const pageSize = Number(accountStorage.getItem(storageKey)) || per_page_default;1530 const pageSize = Number(accountStorage.getItem(storageKey)) || per_page_default;
1531 console.log('pageSize for characters = ' + pageSize);
1532 const sizeChangerOptions = [10, 25, 50, 100, 250, 500, 1000];1531 const sizeChangerOptions = [10, 25, 50, 100, 250, 500, 1000];
1533 $('#rm_print_characters_pagination').pagination({1532 $('#rm_print_characters_pagination').pagination({
1534 dataSource: entities,1533 dataSource: entities,
@@ -1580,7 +1579,6 @@ export async function printCharacters(fullRefresh = false) {
1580 },1579 },
1581 afterSizeSelectorChange: function (e, size) {1580 afterSizeSelectorChange: function (e, size) {
1582 accountStorage.setItem(storageKey, e.target.value);1581 accountStorage.setItem(storageKey, e.target.value);
1583 console.log('pageSize for characters after getting updated = ' + accountStorage.getItem(storageKey));
1584 paginationDropdownChangeHandler(e, size);1582 paginationDropdownChangeHandler(e, size);
1585 },1583 },
1586 afterPaging: function (e) {1584 afterPaging: function (e) {