missing semicolons
This commit is contained in:
parent
d20e096feb
commit
489fc61039
1 changed files with 2 additions and 2 deletions
|
@ -24,12 +24,12 @@ pandora.ui.appPanel = function() {
|
||||||
that.appendTo(pandora.$ui.body);
|
that.appendTo(pandora.$ui.body);
|
||||||
animate && pandora.$ui.body.animate({opacity: 1}, 1000);
|
animate && pandora.$ui.body.animate({opacity: 1}, 1000);
|
||||||
return that;
|
return that;
|
||||||
}
|
};
|
||||||
that.reload = function() {
|
that.reload = function() {
|
||||||
pandora.$ui.appPanel.remove();
|
pandora.$ui.appPanel.remove();
|
||||||
pandora.$ui.appPanel = pandora.ui.appPanel().appendTo(pandora.$ui.body);
|
pandora.$ui.appPanel = pandora.ui.appPanel().appendTo(pandora.$ui.body);
|
||||||
return that;
|
return that;
|
||||||
}
|
};
|
||||||
that.bindEvent({
|
that.bindEvent({
|
||||||
pandora_page: function(data) {
|
pandora_page: function(data) {
|
||||||
setPage(data.value);
|
setPage(data.value);
|
||||||
|
|
Loading…
Reference in a new issue