forked from 0x2620/oxjs
tooltips and better cursors for splitpanels
This commit is contained in:
parent
2aa828c308
commit
1333a3ecec
7 changed files with 105 additions and 73 deletions
|
|
@ -28,6 +28,7 @@ Ox.VideoPanelPlayer = function(options, self) {
|
|||
showAnnotations: true,
|
||||
showControls: true,
|
||||
subtitles: [],
|
||||
tooltips: false,
|
||||
video: '',
|
||||
volume: 1,
|
||||
width: 0
|
||||
|
|
@ -121,7 +122,8 @@ Ox.VideoPanelPlayer = function(options, self) {
|
|||
collapsed: !self.options.showControls,
|
||||
collapsible: true,
|
||||
element: self.$controls,
|
||||
size: 80
|
||||
size: 80,
|
||||
tooltip: self.options.tooltips ? 'timeline' : false
|
||||
}
|
||||
],
|
||||
orientation: 'vertical'
|
||||
|
|
@ -148,7 +150,8 @@ Ox.VideoPanelPlayer = function(options, self) {
|
|||
element: self.$annotations,
|
||||
resizable: true,
|
||||
resize: [192, 256, 320, 384],
|
||||
size: self.options.annotationsSize
|
||||
size: self.options.annotationsSize,
|
||||
tooltip: self.options.tooltips ? 'annotations' : false
|
||||
}
|
||||
],
|
||||
orientation: 'horizontal'
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue