fix loop icon
This commit is contained in:
parent
0fdd110f11
commit
7572c105d7
1 changed files with 2 additions and 2 deletions
|
@ -685,8 +685,8 @@ Ox.VideoPlayer = function(options, self) {
|
||||||
style: 'video',
|
style: 'video',
|
||||||
tooltip: [Ox._('Don\'t Loop'), Ox._('Loop')],
|
tooltip: [Ox._('Don\'t Loop'), Ox._('Loop')],
|
||||||
type: 'image',
|
type: 'image',
|
||||||
value: self.options.loop ? 'RepeatNone' : 'RepeatAll',
|
value: self.options.loop ? 'RepeatAll' : 'RepeatNone',
|
||||||
values: ['RepeatNone', 'RepeatAll']
|
values: ['RepeatAll', 'RepeatNone']
|
||||||
})
|
})
|
||||||
.bindEvent({
|
.bindEvent({
|
||||||
click: function() {
|
click: function() {
|
||||||
|
|
Loading…
Reference in a new issue