1
0
Fork 0
forked from 0x2620/oxjs

fix optionsGroupOffset for multiple groups and seperators

This commit is contained in:
j 2012-01-03 13:05:22 +05:30
commit a7b14f9e0a
2 changed files with 9 additions and 3 deletions

View file

@ -447,7 +447,11 @@ Ox.VideoEditor = function(options, self) {
title: 'Keyboard Shortcuts',
width: 256
}).open();
} else if (id == 'resolution') {
}
},
change: function(data) {
Ox.print('CHANGE', data);
if (data.id == 'resolution') {
self.options.resolution = parseInt(data.checked[0].id);
self.$player[0].options({resolution: self.options.resolution});
}