editor view: fix invalid entity inputs; fix keyboard focus

This commit is contained in:
rolux 2015-02-06 10:16:13 +00:00
commit 4134badf9d
4 changed files with 27 additions and 16 deletions

View file

@ -911,7 +911,7 @@ Ox.VideoAnnotationPanel = function(options, self) {
'shift_g', 'shift_i', 'shift_minus', 'shift_o',
'slash', 'space'
].forEach(function(key) {
key = 'key_' + key;
key = 'key.' + key;
self.$annotationPanel.bindEvent(key, function() {
that.triggerEvent(key);
});