Skip to content

Commit

Permalink
tab focus
Browse files Browse the repository at this point in the history
  • Loading branch information
daniel3735928559 committed Sep 22, 2015
1 parent 555a234 commit 5c63de8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion guppy/guppy.js
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ var Guppy = function(guppy_div, properties){
this.checkpoint();
this.editor.addEventListener("keydown",Guppy.key_down, false);
this.editor.addEventListener("keyup",Guppy.key_up, false);
this.editor.addEventListener("focus", function(e) { Guppy.kb.alt_down = false; }, false);
this.editor.addEventListener("focus", function(e) { Guppy.kb.alt_down = false; this.activate();}, false);
this.editor.style.boxShadow = "1px 1px 1px 0 lightgray inset";
}

Expand Down

0 comments on commit 5c63de8

Please sign in to comment.