var myTheme = { printButton : false, init : function(){ var ie_v = $exe.isIE(); if (ie_v && ie_v<8) return false; setTimeout(function(){ $(window).resize(function() { myTheme.reset(); }); },1000); var tit = $exe_i18n.menu+" ("+$exe_i18n.hide.toLowerCase()+")"; var navToggler = '

'; navToggler += ''; navToggler += ''+$exe_i18n.menu+''; navToggler += ''; if (myTheme.printButton==true && typeof(window.print)=='function') { navToggler += ''; navToggler += ''+$exe_i18n.print+''; navToggler += ''; } navToggler += '

'; var l = $(navToggler); var nav = $("#siteNav"); nav.before(l); $("#toggle-nav").click(function(){ myTheme.toggleMenu(this); return false; }); $("#print-page").click(function(){ window.print(); return false; }); if ( $("A",nav).attr("class").indexOf("active")==0 ) $("BODY").addClass("home-page"); var url = window.location.href; url = url.split("?"); if (url.length>1){ if (url[1].indexOf("nav=false")!=-1) { myTheme.hideMenu(); } } // Set the min-height for the content wrapper $("#main-wrapper").css("min-height",(nav.height()+25)+"px"); }, hideMenu : function(){ $("#siteNav").hide(); $(document.body).addClass("no-nav"); myTheme.params("add"); var tit = $exe_i18n.menu+" ("+$exe_i18n.show.toLowerCase()+")"; $("#toggle-nav").attr("class","show-nav").attr("title",tit); }, toggleMenu : function(e){ if (typeof(myTheme.isToggling)=='undefined') myTheme.isToggling = false; if (myTheme.isToggling) return false; var l = $("#toggle-nav"); if (!e && $(window).width()<900 && l.css("display")!='none') return false; // No reset in mobile view if (!e) { var tit = $exe_i18n.menu+" ("+$exe_i18n.show.toLowerCase()+")"; l.attr("class","show-nav").attr("title",tit); // Reset } myTheme.isToggling = true; if (l.attr("class")=='hide-nav') { var tit = $exe_i18n.menu+" ("+$exe_i18n.show.toLowerCase()+")"; l.attr("class","show-nav").attr("title",tit); $("#siteFooter").hide(); $("#siteNav").slideUp(400,function(){ $(document.body).addClass("no-nav"); $("#siteFooter").show(); myTheme.isToggling = false; }); myTheme.params("add"); } else { var tit = $exe_i18n.menu+" ("+$exe_i18n.hide.toLowerCase()+")"; l.attr("class","hide-nav").attr("title",tit); $(document.body).removeClass("no-nav"); $("#siteNav").slideDown(400,function(){ myTheme.isToggling = false; }); myTheme.params("delete"); } }, param : function(e,act) { if (act=="add") { var ref = e.href; var con = "?"; if (ref.indexOf(".html?")!=-1) con = "&"; var param = "nav=false"; if (ref.indexOf(param)==-1) { ref += con+param; e.href = ref; } } else { // This will remove all params var ref = e.href; ref = ref.split("?"); e.href = ref[0]; } }, params : function(act){ $("A",".pagination").each(function(){ myTheme.param(this,act); }); }, reset : function() { myTheme.toggleMenu(); }, inIframe : function(){ try { return window.self !== window.top; } catch (e) { return true; } }, printContent : function(bodyClassName){ if (bodyClassName.indexOf("exe-authoring-page")==0) { if (typeof(_)!='undefined') { eXe.app.alert(_("File") + " - " + _("Print") + " (Ctrl+P)"); return false; } } if (!this.inIframe()) { window.print(); } else { var isIE = navigator.appName.indexOf('Microsoft') !=-1; if (isIE) alert('Ctrl+P'); var a = window.open(self.location.href); if (!isIE) a.onload = function() { this.print() } a.focus(); } }, common : { init : function(c){ var iDevices = $(".iDevice_wrapper"); var firstIsText = false; iDevices.each(function(i){ if (iDevices.length>1 && i==0 && this.className.indexOf("FreeTextIdevice")!=-1) { $(".iDevice",this).css("margin-top",0); firstIsText = true; } }); // Print button in authoring-page, SCORM and IMS if (myTheme.printButton==true && ($("body").hasClass("exe-authoring-page") || $("body").hasClass("exe-ims") || $("body").hasClass("exe-scorm"))) { var extra = ''; if (iDevices.length>1 && !firstIsText) extra = ' class="with-toggler"'; $("#nodeDecoration").after('

'+$exe_i18n.print+'

'); $("#printNode a").click(function(e){ myTheme.printContent(document.body.className); }); } } } } $(function(){ if ($("body").hasClass("exe-web-site")) { myTheme.init(); } myTheme.common.init(); });