forked from 0x2620/oxjs
fix tooltip of splitpanel resizebar; allow for setting the showannotations option of video player and editor panels from outside
This commit is contained in:
parent
126fb3956e
commit
768dd6c7aa
35 changed files with 20 additions and 24 deletions
|
|
@ -1021,6 +1021,8 @@ Ox.VideoEditor = function(options, self) {
|
|||
setSizes();
|
||||
} else if (key == 'position') {
|
||||
setPosition(value);
|
||||
} else if (key == 'showAnnotations') {
|
||||
that.$element.toggle(1);
|
||||
}
|
||||
};
|
||||
|
||||
|
|
|
|||
|
|
@ -259,6 +259,8 @@ Ox.VideoPanelPlayer = function(options, self) {
|
|||
self.$timeline.options({
|
||||
position: value
|
||||
});
|
||||
} else if (key == 'showAnnotations') {
|
||||
that.$element.toggle(1);
|
||||
} else if (key == 'width') {
|
||||
self.$video.options({
|
||||
width: getPlayerWidth()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue