Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm trying to make a little editor with KineticJS. I have a couple of images that I can ad to the stage whenever I choose an element in the menu, and then click on the stage.

My problem is that in Firefox, and only Firefox, the first time a click on the stage to add a selected element, the browser seems to add a blueish transparent overlay, kind of like the stage's focus() event is triggered.

I can click outside the stage and the overlay will disappear. I've tried a hack where I triggered the click() event and the focus() event on other elements on the page, but it doesn't work.

var element_settings = kkTrainBoard.elements_names[name];

var elementObj = new Image();

elementObj.onload = function() {
   var new_element = new Kinetic.Image({
      x : position_x - (element_settings.width / 2),
      y : position_y - (element_settings.height / 2),
      image : elementObj,
      width : element_settings.width,
      height : element_settings.height,
      draggable : true
   });

   new_element.on('mousedown', function(e) {
      kkTrainBoard.is_element_clicked = true;
   });

   new_element.on('mouseout', function(e) {
      kkTrainBoard.is_element_clicked = false;
   });

   kkTrainBoard.elements_layer.add(new_element);

   kkTrainBoard.board.add(kkTrainBoard.elements_layer);

   kkTrainBoard.elements.push(new_element);
}

elementObj.src = site_domain+'gfx/training_board_elements/'+name+'.png';
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.