As you can see in my fiddle. Or in my code bellow, I'm trying to get an event to happen. When hovering over the box, and clicking the space bar, the confirmation window will apear. Once clicked yes, the box will delete.
The bug/problem being that once you delete the box and click the space bar again, it comes up with the same prompt. I thought I had solved this by turning off the listening with the rTwo.setListening(false);
layer.drawHit();
Anyways, any help would be appreciated. Thanks.
Code:
var stage = new Kinetic.Stage({
container: 'container',
width: 850,
height: 400
});
var layer = new Kinetic.Layer();
var rTwo = new Kinetic.Rect({
x: 0,
y: 0,
width: 100,
height: 50,
fill: 'blue',
draggable: true,
});
layer.add(rTwo);
rTwo.on('mouseover', function(){
document.onkeypress = function(e) {
e = e || window.event;
var charCode = (typeof e.which == "number") ? e.which : e.keyCode;
if (charCode == 32) {
var b1 = confirm("Would you like to delete router 2?");
if (b1 == true){
rTwo.hide();
rLayer.draw();
rTwo.setListening(false);
rlayer.drawHit();
}
else if (b1 == false){
rLayer.draw();
}
}
};
});
stage.add(layer);

