1
0
Fork 0
forked from 0x2620/oxjs

update video editor (places, events)

This commit is contained in:
rlx 2012-01-13 21:55:47 +05:30
commit 8384fcc913
13 changed files with 346 additions and 144 deletions

View file

@ -233,6 +233,8 @@ Ox.ListCalendar = function(options, self) {
events: Ox.clone(self.options.events, true),
height: self.options.height,
showControls: self.options.showControls,
showToolbar: true,
showZoombar: true,
width: self.options.width - 514,
zoom: 4
})
@ -331,7 +333,7 @@ Ox.ListCalendar = function(options, self) {
.bindEvent({
change: function(data) {
Ox.Log('Calendar', 'CHANGE', data);
var exists = false, values
var exists = false, values;
if (['name', 'alternativeNames'].indexOf(data.id) > -1) {
exists = '';
values = data.id == 'name' ? [data.data.value] : data.data.value;
@ -624,4 +626,4 @@ Ox.ListCalendar = function(options, self) {
return that;
};
};