missing semicolons

This commit is contained in:
rolux 2013-07-08 17:16:13 +00:00
parent d20e096feb
commit 489fc61039

View file

@ -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);