Skip to content

Commit

Permalink
code modification
Browse files Browse the repository at this point in the history
  • Loading branch information
kmswlee committed Apr 17, 2020
1 parent 6cb75a7 commit 09bb9c5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions static/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ <h3>RUN: <button type="submit" class="btn btn-primary btn-lg" id="submit">Submi
alert('Please select option!');
return;
}
if (document.getElementById('source_url').value==null){
if (document.getElementById('source_url').value==""){
alert('Please input url!');
return;
}
Expand Down Expand Up @@ -124,7 +124,7 @@ <h3>RUN: <button type="submit" class="btn btn-primary btn-lg" id="submit">Submi
document.getElementById('result').innerText = e.message;
})
};
document.getElementById('submit').onclick = () => run()
document.getElementById('submit').onclick = () => run()
</script>
</div>
</div>

0 comments on commit 09bb9c5

Please sign in to comment.