video stop () by HTML5 canvas
HTML5 canvas

When the video stops, I want to show the button
Why is the code not working?
use video component for play video
this.stop();
this.but1.visible = false;
this.vid1.on("added", function () {
$("#vid1")[0].play();
if (this.vid1.stop) {
this.but1.visible = true;
}
}, this, true);
