1
0
Fork 0

issue #547: prevent global event bindings

This commit is contained in:
Jan Steemann 2013-06-04 11:58:24 +02:00
parent 3a8ecd20e4
commit 9d31ee088f
2 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,4 @@
<div class="thumbnails2">
<div class="thumbnails2" id="documentviewMain">
<div id="transparentHeader">
</div>

View File

@ -21,8 +21,8 @@ var documentView = Backbone.View.extend({
"click #documentTableID tr" : "clicked",
"click #editSecondRow" : "editSecond",
"keydown .sorting_1" : "listenKey",
"keydown" : "listenGlobalKey",
"blur textarea" : "checkFocus"
"keydown #documentviewMain" : "listenGlobalKey",
"blur #documentviewMain textarea" : "checkFocus"
},
checkFocus: function(e) {