Skip to content

Commit

Permalink
added 3rd parameter for event bubbling (set to false) so that firefox…
Browse files Browse the repository at this point in the history
… wouldn't complain
  • Loading branch information
Anthony committed Jan 4, 2011
1 parent d0cafcc commit 65c24b0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ui.js
Original file line number Diff line number Diff line change
Expand Up @@ -467,7 +467,7 @@ app.ui=(function(){
break;
}
}
});
},false);
inputbox.addEventListener("mouseup",function(e){e.stopPropagation();},false);
b_.style.backgroundColor=n.color;
b_.addEventListener("mouseup",function(e){e.stopPropagation();},false);
Expand Down Expand Up @@ -571,7 +571,7 @@ app.ui=(function(){
}
$(conin).mathquill("latex",conin.last);
}
});
},false);

var funcs=document.createElement("div");
funcs.className="overlay";
Expand Down

0 comments on commit 65c24b0

Please sign in to comment.