Skip to content

Commit

Permalink
fix optimizer
Browse files Browse the repository at this point in the history
  • Loading branch information
fukatani committed Aug 17, 2019
1 parent 7933e62 commit 1c91dca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rujaion/webview_widget.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
if (location.href.match(/^https:\/\/atcoder\.jp\/contests\/([^\/]+)\/tasks\/?$/)) {
const tasks = [];
let row;
for (row of document.querySelectorAll('<tbody>tr')) {
for (row of document.querySelectorAll('tbody > tr')) {
const task = row.querySelectorAll('a');
const href = task[0].getAttribute('href');
const task_number = task[0].textContent;
Expand Down

0 comments on commit 1c91dca

Please sign in to comment.