1
0
Fork 0
forked from 0x2620/oxjs

add InsertHTMLDialog to VideoEditor

This commit is contained in:
rlx 2012-02-16 16:35:59 +00:00
commit 4dd2c5706d
7 changed files with 249 additions and 8 deletions

View file

@ -120,6 +120,9 @@ Ox.Editable = function(options, self) {
blur: self.options.submitOnBlur ? submit : blur,
cancel: cancel,
change: change,
insert: function(data) {
that.triggerEvent('insert', data);
},
submit: submit
})
.appendTo(that.$element);