add zap ui to video player
This commit is contained in:
parent
423faa5450
commit
8550cc8442
1 changed files with 45 additions and 0 deletions
|
@ -821,6 +821,51 @@ Ox.VideoPlayer = function(options, self) {
|
|||
})
|
||||
.appendTo(self['$controls' + titleCase]);
|
||||
|
||||
} else if (control == 'zapHome') {
|
||||
|
||||
self.$zapHomeButton = Ox.Button({
|
||||
style: 'symbol',
|
||||
title: 'up',
|
||||
tooltip: 'Home Channel',
|
||||
type: 'image'
|
||||
})
|
||||
.bindEvent({
|
||||
click: function() {
|
||||
that.triggerEvent('zap', {direction: 0});
|
||||
}
|
||||
})
|
||||
.appendTo(self['$controls' + titleCase]);
|
||||
|
||||
} else if (control == 'zapNext') {
|
||||
|
||||
self.$zapNextButton = Ox.Button({
|
||||
style: 'symbol',
|
||||
title: 'right',
|
||||
tooltip: 'Next Channel',
|
||||
type: 'image'
|
||||
})
|
||||
.bindEvent({
|
||||
click: function() {
|
||||
that.triggerEvent('zap', {direction: 1});
|
||||
}
|
||||
})
|
||||
.appendTo(self['$controls' + titleCase]);
|
||||
|
||||
} else if (control == 'zapPrevious') {
|
||||
|
||||
self.$zapPreviousButton = Ox.Button({
|
||||
style: 'symbol',
|
||||
title: 'left',
|
||||
tooltip: 'Previous Channel',
|
||||
type: 'image'
|
||||
})
|
||||
.bindEvent({
|
||||
click: function() {
|
||||
that.triggerEvent('zap', {direction: -1});
|
||||
}
|
||||
})
|
||||
.appendTo(self['$controls' + titleCase]);
|
||||
|
||||
}
|
||||
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue