Skip to content

Commit 00d8859

Browse files
committed
removed console.logging
1 parent c5b76e0 commit 00d8859

File tree

1 file changed

+0
-9
lines changed

1 file changed

+0
-9
lines changed

modules/quest-form.mjs

-9
Original file line numberDiff line numberDiff line change
@@ -63,11 +63,6 @@ export default class QuestForm extends FormApplication {
6363

6464
let folder = this.getHiddenFolder();
6565

66-
console.log(data);
67-
console.log(description);
68-
console.log(gmnotes);
69-
console.log(JSON.stringify(data));
70-
7166
JournalEntry.create({
7267
name: title,
7368
content: JSON.stringify(data),
@@ -110,14 +105,10 @@ export default class QuestForm extends FormApplication {
110105

111106
html.on("click", ".add-new-task", () => {
112107
renderTemplate('modules/forien-quest-log/templates/partials/quest-log-form-task.html', {}).then(el => {
113-
console.log(el);
114108

115-
console.log($(el));
116109
html.find('.list').append(el);
117110
html.find('.del-btn').unbind();
118111
html.on("click", ".del-btn", (event) => {
119-
console.log(event);
120-
console.log($(event));
121112
$(event.target).parent().remove();
122113
});
123114
});

0 commit comments

Comments
 (0)