1
0
Fork 0
forked from 0x2620/oxjs

tooltips and better cursors for splitpanels

This commit is contained in:
rlx 2011-09-04 21:15:16 +00:00
commit 1333a3ecec
7 changed files with 105 additions and 73 deletions

View file

@ -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'