update embed panel
This commit is contained in:
parent
a6f3495663
commit
06c583fd2e
1 changed files with 49 additions and 1 deletions
|
@ -1,5 +1,51 @@
|
||||||
pandora.ui.embedPanel = function() {
|
pandora.ui.embedPanel = function() {
|
||||||
var that = Ox.Element().html('Not implemented.');
|
|
||||||
|
var that, $errorBox, $errorLogo, $errorText;
|
||||||
|
|
||||||
|
if (pandora.user.ui.item) {
|
||||||
|
|
||||||
|
that = Ox.Element().html('OK');
|
||||||
|
|
||||||
|
} else {
|
||||||
|
|
||||||
|
that = Ox.Element()
|
||||||
|
.addClass('OxScreen')
|
||||||
|
.css({
|
||||||
|
position: 'absolute',
|
||||||
|
left: 0,
|
||||||
|
top: 0,
|
||||||
|
right: 0,
|
||||||
|
bottom: 0,
|
||||||
|
});
|
||||||
|
$errorBox = $('<div>')
|
||||||
|
.css({
|
||||||
|
position: 'absolute',
|
||||||
|
left: 0,
|
||||||
|
top: 0,
|
||||||
|
right: 0,
|
||||||
|
bottom: 0,
|
||||||
|
width: '96px',
|
||||||
|
height: '96px',
|
||||||
|
padding: '16px',
|
||||||
|
margin: 'auto'
|
||||||
|
})
|
||||||
|
.appendTo(that);
|
||||||
|
$errorLogo = $('<img>')
|
||||||
|
.css({width: '96px', opacity: 0})
|
||||||
|
.one({
|
||||||
|
load: function() {
|
||||||
|
$errorLogo.animate({opacity: 1}, 250);
|
||||||
|
}
|
||||||
|
})
|
||||||
|
.attr({src: '/static/png/logo.png'})
|
||||||
|
.appendTo($errorBox);
|
||||||
|
$errorText = $('<div>')
|
||||||
|
.css({marginTop: '4px', fontSize: '9px', textAlign: 'center'})
|
||||||
|
.html('This view cannot<br>be embedded.')
|
||||||
|
.appendTo($errorBox);
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
that.display = function() {
|
that.display = function() {
|
||||||
// fixme: move animation into Ox.App
|
// fixme: move animation into Ox.App
|
||||||
var animate = $('.OxScreen').length == 0;
|
var animate = $('.OxScreen').length == 0;
|
||||||
|
@ -9,5 +55,7 @@ pandora.ui.embedPanel = function() {
|
||||||
animate && pandora.$ui.body.animate({opacity: 1}, 1000);
|
animate && pandora.$ui.body.animate({opacity: 1}, 1000);
|
||||||
return that;
|
return that;
|
||||||
};
|
};
|
||||||
|
|
||||||
return that;
|
return that;
|
||||||
|
|
||||||
};
|
};
|
Loading…
Reference in a new issue