-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_intef_js.js
163 lines (157 loc) · 5.4 KB
/
_intef_js.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
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 = '<p id="header-options">';
navToggler += '<a href="#" class="hide-nav" id="toggle-nav" title="'+tit+'">';
navToggler += '<span>'+$exe_i18n.menu+'</span>';
navToggler += '</a>';
if (myTheme.printButton==true && typeof(window.print)=='function') {
navToggler += '<a href="#" id="print-page">';
navToggler += '<span>'+$exe_i18n.print+'</span>';
navToggler += '</a>';
}
navToggler += '</p>';
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('<p id="printNode"'+extra+'><a href="#" title="'+$exe_i18n.print+'"><span>'+$exe_i18n.print+'</span></a></p>');
$("#printNode a").click(function(e){
myTheme.printContent(document.body.className);
});
}
}
}
}
$(function(){
if ($("body").hasClass("exe-web-site")) {
myTheme.init();
}
myTheme.common.init();
});