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

@ -5,7 +5,6 @@ Ox.VideoPlayerPanel <f> VideoPlayerPanel Object
options <o> Options object
self <o> Shared private variable
([options[, self]]) -> <o:Ox.SplitPanel> VideoPlayerPanel Object
annotationsfont <!> annotationsfont
annotationsrange <!> annotationsrange
annotationssize <!> annotationssize
annotationssort <!> annotationssort
@ -36,7 +35,6 @@ Ox.VideoPlayerPanel = function(options, self) {
var that = Ox.Element({}, self)
.defaults({
annotationsCalendarSize: 256,
annotationsFont: 'small',
annotationsMapSize: 256,
annotationsRange: 'all',
annotationsSize: 256,
@ -334,7 +332,6 @@ Ox.VideoPlayerPanel = 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,
@ -345,7 +342,6 @@ Ox.VideoPlayerPanel = 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,
@ -353,10 +349,6 @@ Ox.VideoPlayerPanel = 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);