fixing some video editor bugs (focus, markers)
This commit is contained in:
parent
f311e05412
commit
78a4229689
3 changed files with 10 additions and 16 deletions
|
|
@ -136,8 +136,9 @@ Ox.VideoEditor = function(options, self) {
|
|||
|
||||
self.$editor = new Ox.Element()
|
||||
.addClass('OxVideoEditor')
|
||||
.click(function() {
|
||||
that.gainFocus()
|
||||
.click(function(e) {
|
||||
var $target = $(e.target);
|
||||
!$target.is('.OxPosition') && !$target.is('input') && that.gainFocus();
|
||||
});
|
||||
|
||||
self.sizes = getSizes();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue