MIDIjs.player_callback not being used in index.html #12
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Issues Found in index.html (lines 107-159)
Issue #1: MIDIjs.player_callback defined but never used
Line 128:
MIDIjs.player_callbackis assigned but never checked or used. The callback function is defined to track playback status, but there's no code that actually uses it to update UI or handle playback events properly.Issue #2: Variable type mismatch causing comparison issues
Line 134:
isplaying = "idk"- This variable is set to"idk"(not a string) which will cause issues in comparisons later on line 148 where you checkisplaying == "idk".Impact
Files Affected