Skip to content

Commit

Permalink
removed console.logging
Browse files Browse the repository at this point in the history
  • Loading branch information
Forien committed Jun 15, 2020
1 parent c5b76e0 commit 00d8859
Showing 1 changed file with 0 additions and 9 deletions.
9 changes: 0 additions & 9 deletions modules/quest-form.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -63,11 +63,6 @@ export default class QuestForm extends FormApplication {

let folder = this.getHiddenFolder();

console.log(data);
console.log(description);
console.log(gmnotes);
console.log(JSON.stringify(data));

JournalEntry.create({
name: title,
content: JSON.stringify(data),
Expand Down Expand Up @@ -110,14 +105,10 @@ export default class QuestForm extends FormApplication {

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

console.log($(el));
html.find('.list').append(el);
html.find('.del-btn').unbind();
html.on("click", ".del-btn", (event) => {
console.log(event);
console.log($(event));
$(event.target).parent().remove();
});
});
Expand Down

0 comments on commit 00d8859

Please sign in to comment.