1
0
Fork 0
forked from 0x2620/oxjs

new-style find-as-you-type for video editor

This commit is contained in:
rolux 2011-05-19 19:58:00 +02:00
commit 9f4f9dfa39
135 changed files with 9182 additions and 44 deletions

View file

@ -8,7 +8,7 @@ Ox.load('UI', {
Ox.get('srt/' + id + '.srt', function(srt) {
var subtitles = Ox.parseSRT(srt, 25),
var subtitles = Ox.parseSRT(srt/*, 25*/),
layers = [
{
editable: true,
@ -115,6 +115,16 @@ Ox.load('UI', {
$videoEditor.bindEvent({
resize: function(foo, size) {
Ox.print('RESIZING', size)
$videoEditor.options({
height: size
});
}
});
$videoEditor.$element.bindEvent({
resize: function(foo, size) {
Ox.print('RESIZING', size)
$videoEditor.options({
height: size
});