mirror of https://gitee.com/bigwinds/arangodb
issue #547: prevent global event bindings
This commit is contained in:
parent
3a8ecd20e4
commit
9d31ee088f
|
@ -1,4 +1,4 @@
|
|||
<div class="thumbnails2">
|
||||
<div class="thumbnails2" id="documentviewMain">
|
||||
<div id="transparentHeader">
|
||||
|
||||
</div>
|
||||
|
|
|
@ -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) {
|
||||
|
|
Loading…
Reference in New Issue