Skip to content

Commit

Permalink
Merge pull request #527 from mx781/remove-stray-console-log
Browse files Browse the repository at this point in the history
medalcount: Remove stray console log
  • Loading branch information
spencermountain committed Apr 12, 2023
2 parents a4c36b1 + 03a74f8 commit c654377
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 8 deletions.
2 changes: 1 addition & 1 deletion builds/wtf_wikipedia-client.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion builds/wtf_wikipedia-client.mjs

Large diffs are not rendered by default.

6 changes: 5 additions & 1 deletion builds/wtf_wikipedia.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -6804,7 +6804,6 @@
'2nd': Number(all[i + 2]),
'3rd': Number(all[i + 3]),
});
console.log(all[i]);
}
let obj = {
template: 'medalcount',
Expand Down Expand Up @@ -9777,6 +9776,7 @@
*/
constructor(wiki, options) {
options = options || {};
this._options = options;
let props = {
pageID: options.pageID || options.id || null,
namespace: options.namespace || options.ns || null,
Expand Down Expand Up @@ -10245,6 +10245,10 @@
});
return this
}

options() {
return this._options
}
}

// aliases
Expand Down
6 changes: 5 additions & 1 deletion builds/wtf_wikipedia.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -6796,7 +6796,6 @@ var fns = {
'2nd': Number(all[i + 2]),
'3rd': Number(all[i + 3]),
});
console.log(all[i]);
}
let obj = {
template: 'medalcount',
Expand Down Expand Up @@ -9769,6 +9768,7 @@ class Document {
*/
constructor(wiki, options) {
options = options || {};
this._options = options;
let props = {
pageID: options.pageID || options.id || null,
namespace: options.namespace || options.ns || null,
Expand Down Expand Up @@ -10237,6 +10237,10 @@ class Document {
});
return this
}

options() {
return this._options
}
}

// aliases
Expand Down
1 change: 0 additions & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions plugins/api/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion src/template/custom/data-only/functions.js
Original file line number Diff line number Diff line change
Expand Up @@ -408,7 +408,6 @@ export default {
'2nd': Number(all[i + 2]),
'3rd': Number(all[i + 3]),
})
console.log(all[i])
}
let obj = {
template: 'medalcount',
Expand Down

0 comments on commit c654377

Please sign in to comment.