forked from 0x2620/oxjs
updates for players, timelines and markers
This commit is contained in:
parent
9a7a0acd89
commit
18f117138d
9 changed files with 213 additions and 184 deletions
|
|
@ -462,7 +462,6 @@ Ox.VideoPlayer = function(options, self) {
|
|||
tooltip: 'Find',
|
||||
type: 'image'
|
||||
})
|
||||
.addClass('OxVideo')
|
||||
.bindEvent({
|
||||
click: toggleFind
|
||||
})
|
||||
|
|
@ -479,7 +478,6 @@ Ox.VideoPlayer = function(options, self) {
|
|||
tooltip: ['Enter Fullscreen', 'Exit Fullscreen'],
|
||||
type: 'image'
|
||||
})
|
||||
.addClass('OxVideo')
|
||||
.bindEvent({
|
||||
click: function() {
|
||||
toggleFullscreen('button');
|
||||
|
|
@ -495,7 +493,6 @@ Ox.VideoPlayer = function(options, self) {
|
|||
tooltip: 'Go to ' + Ox.toTitleCase(self.options.type) + ' Point',
|
||||
type: 'image'
|
||||
})
|
||||
.addClass('OxVideo')
|
||||
.bindEvent({
|
||||
click: goToPoint
|
||||
})
|
||||
|
|
@ -512,7 +509,6 @@ Ox.VideoPlayer = function(options, self) {
|
|||
tooltip: ['Mute', 'Unmute'],
|
||||
type: 'image'
|
||||
})
|
||||
.addClass('OxVideo')
|
||||
.bindEvent({
|
||||
click: function() {
|
||||
toggleMuted('button');
|
||||
|
|
@ -528,7 +524,6 @@ Ox.VideoPlayer = function(options, self) {
|
|||
tooltip: 'Next',
|
||||
type: 'image'
|
||||
})
|
||||
.addClass('OxVideo')
|
||||
.bindEvent({
|
||||
click: function() {
|
||||
goToNextClip(1);
|
||||
|
|
@ -548,7 +543,6 @@ Ox.VideoPlayer = function(options, self) {
|
|||
tooltip: ['Play', 'Pause'],
|
||||
type: 'image'
|
||||
})
|
||||
.addClass('OxVideo')
|
||||
.bindEvent({
|
||||
click: function() {
|
||||
togglePaused('button');
|
||||
|
|
@ -564,7 +558,6 @@ Ox.VideoPlayer = function(options, self) {
|
|||
tooltip: 'Play In to Out',
|
||||
type: 'image'
|
||||
})
|
||||
.addClass('OxVideo')
|
||||
.bindEvent({
|
||||
click: playInToOut
|
||||
})
|
||||
|
|
@ -637,7 +630,6 @@ Ox.VideoPlayer = function(options, self) {
|
|||
tooltip: 'Previous',
|
||||
type: 'image'
|
||||
})
|
||||
.addClass('OxVideo')
|
||||
.bindEvent({
|
||||
click: function() {
|
||||
goToNextClip(-1);
|
||||
|
|
@ -701,7 +693,6 @@ Ox.VideoPlayer = function(options, self) {
|
|||
.html(resolution + 'p')
|
||||
.appendTo($item);
|
||||
$('<img>')
|
||||
.addClass('OxVideo')
|
||||
.attr({
|
||||
src: resolution == self.options.resolution ?
|
||||
Ox.UI.getImageURL('symbolCheck', 'modern') :
|
||||
|
|
@ -721,7 +712,6 @@ Ox.VideoPlayer = function(options, self) {
|
|||
tooltip: ['Scale to Fill', 'Scale to Fit'],
|
||||
type: 'image'
|
||||
})
|
||||
.addClass('OxVideo')
|
||||
.bindEvent('click', function() {
|
||||
toggleScale('button');
|
||||
})
|
||||
|
|
@ -735,7 +725,6 @@ Ox.VideoPlayer = function(options, self) {
|
|||
tooltip: 'Set ' + Ox.toTitleCase(self.options.type) + ' Point',
|
||||
type: 'image'
|
||||
})
|
||||
.addClass('OxVideo')
|
||||
.bindEvent({
|
||||
click: setPoint
|
||||
})
|
||||
|
|
@ -752,7 +741,6 @@ Ox.VideoPlayer = function(options, self) {
|
|||
tooltip: ['Larger', 'Smaller'],
|
||||
type: 'image'
|
||||
})
|
||||
.addClass('OxVideo')
|
||||
.bindEvent('click', toggleSize)
|
||||
.appendTo(self['$controls' + titleCase]);
|
||||
|
||||
|
|
@ -801,7 +789,6 @@ Ox.VideoPlayer = function(options, self) {
|
|||
tooltip: 'Volume',
|
||||
type: 'image'
|
||||
})
|
||||
.addClass('OxVideo')
|
||||
.bindEvent({
|
||||
click: toggleVolume
|
||||
})
|
||||
|
|
@ -844,7 +831,6 @@ Ox.VideoPlayer = function(options, self) {
|
|||
tooltip: 'Previous',
|
||||
type: 'image'
|
||||
})
|
||||
.addClass('OxVideo')
|
||||
.bindEvent({
|
||||
click: function() {
|
||||
goToNextResult(-1);
|
||||
|
|
@ -859,7 +845,6 @@ Ox.VideoPlayer = function(options, self) {
|
|||
tooltip: 'Next',
|
||||
type: 'image'
|
||||
})
|
||||
.addClass('OxVideo')
|
||||
.bindEvent({
|
||||
click: function() {
|
||||
goToNextResult(1);
|
||||
|
|
@ -895,7 +880,6 @@ Ox.VideoPlayer = function(options, self) {
|
|||
tooltip: 'Clear',
|
||||
type: 'image'
|
||||
})
|
||||
.addClass('OxVideo')
|
||||
.bindEvent({
|
||||
click: function() {
|
||||
self.options.find = '';
|
||||
|
|
@ -918,7 +902,6 @@ Ox.VideoPlayer = function(options, self) {
|
|||
tooltip: 'Hide',
|
||||
type: 'image'
|
||||
})
|
||||
.addClass('OxVideo')
|
||||
.bindEvent({
|
||||
click: toggleFind
|
||||
})
|
||||
|
|
@ -947,7 +930,6 @@ Ox.VideoPlayer = function(options, self) {
|
|||
tooltip: 'Hide',
|
||||
type: 'image'
|
||||
})
|
||||
.addClass('OxVideo')
|
||||
.bindEvent({
|
||||
click: toggleVolume
|
||||
})
|
||||
|
|
@ -962,7 +944,6 @@ Ox.VideoPlayer = function(options, self) {
|
|||
tooltip: ['Mute', 'Unmute'],
|
||||
type: 'image'
|
||||
})
|
||||
.addClass('OxVideo')
|
||||
.bindEvent({
|
||||
click: function() {
|
||||
toggleMuted();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue