Ox.UI -> Ox
This commit is contained in:
parent
6df89d9c06
commit
ba22a7e2eb
2 changed files with 3 additions and 3 deletions
|
@ -242,7 +242,7 @@ Ox.VideoPlayer = function(options, self) {
|
|||
})
|
||||
.addClass('OxVideoPlayer');
|
||||
|
||||
Ox.UI.$window.on({
|
||||
Ox.$window.on({
|
||||
resize: function() {
|
||||
self.options.fullscreen && setSizes();
|
||||
}
|
||||
|
@ -2533,7 +2533,7 @@ Ox.VideoPlayer = function(options, self) {
|
|||
top: self.absoluteOffset.top + 'px',
|
||||
zIndex: 1000
|
||||
})
|
||||
.appendTo(Ox.UI.$body);
|
||||
.appendTo(Ox.$body);
|
||||
if (self.options.externalControls) {
|
||||
self.externalControls = true;
|
||||
self.options.externalControls = false;
|
||||
|
|
|
@ -79,7 +79,7 @@ Ox.Tooltip = function(options, self) {
|
|||
self.y = y;
|
||||
}
|
||||
$('.OxTooltip').detach(); // fixme: don't use DOM
|
||||
that.appendTo(Ox.UI.$body);
|
||||
that.appendTo(Ox.$body);
|
||||
width = that.width();
|
||||
height = that.height();
|
||||
left = Ox.limit(
|
||||
|
|
Loading…
Reference in a new issue