better tooltip for in/out players (fixes #501)
This commit is contained in:
parent
5383867f70
commit
c6e8a84f65
1 changed files with 3 additions and 1 deletions
|
@ -650,7 +650,9 @@ Ox.VideoPlayer = function(options, self) {
|
|||
+ self.options.showMilliseconds * 6;
|
||||
|
||||
self.$position = Ox.Element({
|
||||
tooltip: 'Position'
|
||||
tooltip: self.options.type == 'play' ? 'Position'
|
||||
: self.options.type == 'in' ? 'In Point'
|
||||
: 'Out Point'
|
||||
})
|
||||
.addClass('OxPosition')
|
||||
.css({
|
||||
|
|
Loading…
Reference in a new issue