added error handling, changed something
This commit is contained in:
parent
c5b24cde5f
commit
ff9343a5ab
7
app.py
7
app.py
|
@ -7,5 +7,8 @@ def main():
|
|||
|
||||
@app.route('/submit_kanji', methods=['GET'])
|
||||
def submit_kanji():
|
||||
with open(f"assets/0{format(ord(request.args.get('kanji')), 'x')}.svg", encoding='utf-8') as file:
|
||||
return render_template('index.html', svg=file.read())
|
||||
try:
|
||||
with open(f"assets/0{format(ord(request.args.get('kanji')), 'x')}.svg", encoding='utf-8') as file:
|
||||
return render_template('index.html', svg=file.read())
|
||||
except:
|
||||
return render_template('index.html', svg="no")
|
|
@ -40,7 +40,7 @@
|
|||
</span>
|
||||
|
||||
<script>
|
||||
var allParts = $("svg > g > g > *");
|
||||
var allParts = $("svg > g > g *[kvg\\:element]");
|
||||
|
||||
allParts.on({
|
||||
mouseenter: function () {
|
||||
|
@ -54,7 +54,7 @@
|
|||
});
|
||||
|
||||
allParts.click(function() {
|
||||
window.location = "{{ url_for('submit_kanji') }}" + "?kanji=" + ((typeof $(this).attr("kvg:original") !== typeof undefined) ? $(this).attr("kvg:original") : $(this).attr("kvg:element"));
|
||||
window.location = "{{ url_for('submit_kanji') }}" + "?kanji=" + ((typeof $(this).attr("kvg:original") === typeof undefined) ? ((typeof $(this).attr("kvg:element") === typeof undefined) ? $(this).attr("kvg:phon") : $(this).attr("kvg:element")) : $(this).attr("kvg:original") );
|
||||
});
|
||||
|
||||
</script>
|
||||
|
|
Loading…
Reference in a new issue