forked from 0x2620/oxjs
fix a bug in Ox.List where a select event would trigger even though the selection had not changed
This commit is contained in:
parent
95da27d0db
commit
8b9c5a485b
2 changed files with 11 additions and 6 deletions
|
|
@ -1208,7 +1208,8 @@ Ox.VideoEditor = function(options, self) {
|
|||
}
|
||||
|
||||
function toggleSize() {
|
||||
self.options.videoSize = self.options.videoSize == 'small' ? 'large' : 'small';
|
||||
self.options.videoSize = self.options.videoSize == 'small'
|
||||
? 'large' : 'small';
|
||||
setSizes();
|
||||
self.$videoMenuButton.checkItem(self.options.videoSize);
|
||||
self.$player[0].options({
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue