1
0
Fork 0
forked from 0x2620/oxjs

remove annotations font size

This commit is contained in:
rolux 2014-02-18 06:34:08 +00:00
commit 978cc88618
6 changed files with 0 additions and 41 deletions

View file

@ -6,7 +6,6 @@ Ox.VideoTimelinePanel <f> Video timeline panel
self <o> Shared private variable
([options[, self]]) -> <o:Ox.SplitPanel> Video timeline panel
annoationssize <!> annoationssize
annotationsfont <!> annotationsfont
annotationsrange <!> annotationsrange
annotationssort <!> annotationssort
censored <!> censored
@ -32,7 +31,6 @@ Ox.VideoTimelinePanel = function(options, self) {
var that = Ox.Element({}, self)
.defaults({
annotationsCalendarSize: 256,
annotationsFont: 'small',
annotationsMapSize: 256,
annotationsRange: 'all',
annotationsSize: 256,
@ -163,7 +161,6 @@ Ox.VideoTimelinePanel = function(options, self) {
calendarSize: self.options.annotationsCalendarSize,
clickLink: self.options.clickLink,
editable: false,
font: self.options.annotationsFont,
highlight: self.options.find,
'in': self.options['in'],
itemName: self.options.itemName,
@ -174,7 +171,6 @@ Ox.VideoTimelinePanel = function(options, self) {
range: self.options.annotationsRange,
selected: self.options.selected,
showCalendar: self.options.showAnnotationsCalendar,
showFonts: true,
showLayers: Ox.clone(self.options.showLayers),
showMap: self.options.showAnnotationsMap,
showUsers: self.options.showUsers,
@ -182,10 +178,6 @@ Ox.VideoTimelinePanel = function(options, self) {
width: self.options.annotationsSize
})
.bindEvent({
annotationsfont: function(data) {
self.options.annotationsFont = data.font;
that.triggerEvent('annotationsfont', data);
},
annotationsrange: function(data) {
self.options.annotationsRange = data.range;
that.triggerEvent('annotationsrange', data);