X-Git-Url: http://git.cielonegro.org/gitweb.cgi?p=Rakka.git;a=blobdiff_plain;f=js%2Fscreen.js;h=ef971839d572fd09edac06b24ba2bd0c8c032afe;hp=0ac558b9f6da97e52bcf479f8f2c9e937f1a7efb;hb=01a4a132192ed8b65c8aa7b86cb0e9bc08b725ff;hpb=e2fd35989e9765281523fd4ce05dcd0199bdbbad diff --git a/js/screen.js b/js/screen.js index 0ac558b..ef97183 100644 --- a/js/screen.js +++ b/js/screen.js @@ -1,40 +1,67 @@ (function () { - + var switchedArea = null; Rakka.switchScreen = function () { if (switchedArea == null) { switchedArea = $.DIV({}); - - $("div.sideBar div.outline").hide(); + + $("p.redirection").hide(); $("div.body") .children() .hide() .end() .append(switchedArea); + + $("body").append( + $.DIV({className: "left sideBarMask"})); + + var btnClose + = $.INPUT({type : "button", + className: "closeButton", + value : "Close"}); + $("body").append( + $.DIV({className: "right sideBarMask"}, + $.DIV({className: "content"}, + btnClose))); + + $(btnClose).click(function () { + Rakka.restoreScreen(); + }); } else { $(switchedArea).empty(); } - + return $(switchedArea); }; Rakka.restoreScreen = function () { - if (switchedArea == null) { - throw new Error("Rakka.restoreScreen(): not switched"); - } + if (switchedArea != null) { + $("p.redirection").show(); - $("div.sideBar div.outline").show(); + $(switchedArea).remove(); + switchedArea = null; - $(switchedArea).remove(); - switchedArea = null; + $("div.sideBarMask").remove(); - $("div.body").children().show(); + $("div.body").children().show(); + } return null; }; + Rakka.getSwitchedScreen = function () { + return switchedArea; + }; + + Rakka.scrollToTopLeft = function () { + $("div.center").each(function () { + this.scrollTop = 0; + this.scrollLeft = 0; + }); + }; + var waitingMessageBoard = null; Rakka.displayWaitingMessage = function (msg) { @@ -43,7 +70,7 @@ waitingMessageBoard = $.P({className: "waitingMessageBoard"}, $.P({}, msg)); - + $("body").append(waitingMessageBoard); }; @@ -53,5 +80,5 @@ waitingMessageBoard = null; } }; - + })();