This repository has been archived by the owner on May 11, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
358 lines (298 loc) · 14.7 KB
/
index.html
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
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title>Untitled Document</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge"/>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<link type="text/css" href="resources/css/reset.css" rel="Stylesheet" />
<link type="text/css" href="resources/css/default.css" rel="Stylesheet" />
<script type="text/javascript">
if (location.href.toString().indexOf('file://localhost/') == 0) {
location.href = location.href.toString().replace('file://localhost/', 'file:///');
}
</script>
<script type="text/javascript" src="resources/scripts/jquery-1.7.1.min.js"></script>
<script type="text/javascript" src="resources/scripts/player/splitter.js"></script>
<script type="text/javascript" src="resources/scripts/axutils.js"></script>
<script type="text/javascript" src="resources/scripts/player/axplayer.js"></script>
<script type="text/javascript" src="resources/scripts/messagecenter.js"></script>
<script type="text/javascript" src="data/document.js"></script>
<style type="text/css">
#outerContainer {
width:1000px;
height:1500px;
}
.vsplitbar {
width: 3px;
background: #B9B9B9;
}
#rightPanel {
background-color: White;
}
#leftPanel {
/*min-width: 190px;*/
}
.splitterMask {
position:absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
overflow: hidden;
background-image: url(resources/images/transparent.gif);
z-index: 20000;
}
</style>
<script type="text/javascript" language="JavaScript"><!--
// isolate scope
(function() {
setUpController();
var configuration = $axure.document.configuration;
var _settings = {};
_settings.projectId = configuration.prototypeId;
_settings.isAxshare = configuration.isAxshare;
_settings.loadFeedbackPlugin = configuration.loadFeedbackPlugin;
_settings.startCollapsed = HashString("c") == "1";
if(HashString("c") == "2") closePlayer();
$axure.player.settings = _settings;
$(window).bind('load', function() {
if(CHROME_5_LOCAL && !$('body').attr('pluginDetected')) {
window.location = 'resources/chrome/chrome.html';
}
});
$(document).ready(function() {
$axure.page.bind('load.start', mainFrame_onload);
$axure.messageCenter.addMessageListener(messageCenter_message);
if($axure.player.settings.loadFeedbackPlugin) {
if($axure.player.settings.isAxshare) {
$axure.utils.loadJS('/Scripts/plugins/feedback/feedback.js');
} else {
$axure.utils.loadJS('http://share.axure.com/Scripts/plugins/feedback/feedback.js');
}
}
if(navigator.userAgent.indexOf("MSIE") >= 0) $('#outerContainer').width('100%');
initialize();
if($axure.player.settings.startCollapsed) $('#outerContainer').splitter({ sizeLeft: 0 });
else $('#outerContainer').splitter({ sizeLeft: 250 });
$('#leftPanel').width(250);
$(window).resize(function() { resizeContent(); });
$('#maximizePanelContainer').hide();
initializeLogo();
$(window).resize();
resizeContent();
//wait for ie to get to a good state and resize
if(IE && BROWSER_VERSION == "6.0") setTimeout(function() { $('#outerContainer').trigger('resize'); }, 30);
if($axure.player.settings.startCollapsed) {
collapse();
$('#leftPanel').width(0);
}
});
})();
var lastLeftPanelWidth = 250;
function messageCenter_message(message, data) {
if(message == 'expandFrame') expand();
}
function resizeContent() {
var newHeight = $(window).height();
var newWidth = $(window).width();
var controlContainerHeight = newHeight - 42;
if($('#interfaceControlFrameLogoContainer').is(':visible')) controlContainerHeight -= $('#interfaceControlFrameLogoContainer').height() + 16;
$('#outerContainer').height(newHeight).width(newWidth);
$('.vsplitbar').height(newHeight);
$('#leftPanel').height(newHeight);
$('#interfaceControlFrame').height(newHeight);
$('#interfaceControlFrameContainer').height(controlContainerHeight);
$('#rightPanel').height(newHeight);
$('#mainFrame').height(newHeight);
if($('#leftPanel').is(':visible')) $('#rightPanel').width($(window).width() - $('#leftPanel').width() - $('.vsplitbar').width());
else $('#rightPanel').width($(window).width());
}
function closePlayer() {
if($axure.page.location) window.location.href = $axure.page.location;
else {
var pageFile = getInitialUrl();
var currentLocation = window.location.toString();
window.location.href = currentLocation.substr(0, currentLocation.lastIndexOf("/") + 1) + pageFile;
}
}
function replaceHash(newHash) {
var currentLocWithoutHash = window.location.toString().split('#')[0];
//We use replace so that every hash change doesn't get appended to the history stack.
//We use replaceState in browsers that support it, else replace the location
if(typeof window.history.replaceState != 'undefined') {
try {
//Chrome 45 (Version 45.0.2454.85 m) started throwing an error here when generated locally (this only happens with sitemap open) which broke all interactions.
//try catch breaks the url adjusting nicely when the sitemap is open, but all interactions and forward and back buttons work.
//Uncaught SecurityError: Failed to execute 'replaceState' on 'History': A history state object with URL 'file:///C:/Users/Ian/Documents/Axure/HTML/Untitled/start.html#p=home' cannot be created in a document with origin 'null'.
window.history.replaceState(null, null, currentLocWithoutHash + newHash);
} catch(ex) {}
} else {
window.location.replace(currentLocWithoutHash + newHash);
}
}
function collapse() {
var currentHash = window.location.hash;
//If the collapse hash string var isn't present and set to 1, insert it
if (currentHash.indexOf('#c=1') == -1 && currentHash.indexOf('&c=1') == -1) {
var hashToSet = '';
var varIndex = currentHash.indexOf('#c=');
if (varIndex == -1) varIndex = currentHash.indexOf('&c=');
if (varIndex != -1) {
var newHash = currentHash.substring(0, varIndex);
newHash = newHash == '' ? '#c=1' : newHash + '&c=1';
var ampIndex = currentHash.indexOf('&', varIndex + 1);
if (ampIndex != -1) {
newHash = newHash + currentHash.substring(ampIndex);
}
hashToSet = newHash;
} else if (currentHash.indexOf('#') != -1) {
hashToSet = currentHash + '&c=1';
} else {
hashToSet = '#c=1';
}
if (hashToSet != '') {
replaceHash(hashToSet);
}
}
$('#maximizePanelContainer').show();
lastLeftPanelWidth = $('#leftPanel').width();
$('#leftPanel').hide();
$('.vsplitbar').hide();
$('#rightPanel').width($(window).width());
$(window).resize();
$('#outerContainer').trigger('resize');
}
function expand() {
var currentHash = self.location.hash;
var varIndex = currentHash.indexOf('&c=');
if (varIndex == -1) varIndex = currentHash.indexOf('#c=');
//If the collapse hash string var is present, remove it
if (varIndex != -1) {
var newHash = currentHash.substring(0, varIndex);
var ampIndex = currentHash.indexOf('&', varIndex + 1);
if (ampIndex != -1) {
newHash = newHash == '' ? '#' + currentHash.substring(ampIndex + 1) : newHash + currentHash.substring(ampIndex);
}
replaceHash(newHash);
}
$('#maximizePanelContainer').hide();
$('#leftPanel').width(lastLeftPanelWidth);
$('#leftPanel').show();
$('.vsplitbar').show();
$('#rightPanel').width($(window).width() - $('#leftPanel').width() - $('.vsplitbar').width());
$(window).resize();
$('#outerContainer').trigger('resize');
}
function initialize() {
var legacyQString = QueryString("Page");
if (legacyQString.length > 0) {
location.href = location.href.substring(0, location.href.indexOf("?")) + "#p=" + legacyQString;
return;
}
var mainFrame = document.getElementById("mainFrame");
mainFrame.contentWindow.location.href = getInitialUrl();
}
function getInitialUrl() {
var pageName = HashString("p");
if(pageName.length > 0) return pageName + ".html";
else {
var url = getFirstPageUrl($axure.document.sitemap.rootNodes);
return (url ? url : "about:blank");
}
}
function getFirstPageUrl(nodes) {
for (var i = 0; i < nodes.length; i++) {
var node = nodes[i];
if (node.url) return node.url;
else {
var hasChildren = (node.children && node.children.length > 0);
if (hasChildren) {
var url = getFirstPageUrl(node.children);
if (url) return url;
}
}
}
return null;
}
function initializeLogo() {
if($axure.document.configuration.logoImagePath) {
$('#interfaceControlFrameLogoImageContainer').html('<img id="logoImage" src="" />');
$('#logoImage').attr('src', $axure.document.configuration.logoImagePath).load(function() { resizeContent(); });
$('#interfaceControlFrameMinimizeContainer').css('background-color', '#FFFFFF');
} else $('#interfaceControlFrameLogoImageContainer').hide();
if ($axure.document.configuration.logoImageCaption) {
$('#interfaceControlFrameLogoCaptionContainer').html($axure.document.configuration.logoImageCaption);
$('#interfaceControlFrameMinimizeContainer').css('background-color', '#FFFFFF');
} else $('#interfaceControlFrameLogoCaptionContainer').hide();
if(!$('#interfaceControlFrameLogoImageContainer').is(':visible') && !$('#interfaceControlFrameLogoCaptionContainer').is(':visible')) {
$('#interfaceControlFrameLogoContainer').hide();
}
}
function mainFrame_onload() {
if($axure.page.pageName) document.title = $axure.page.pageName;
}
function QueryString(query) {
var qstring = self.location.href.split("?");
if(qstring.length < 2) return "";
return GetParameter(qstring, query);
}
function GetParameter(qstring, query) {
var prms = qstring[1].split("&");
var frmelements = new Array();
var currprmeter, querystr = "";
for(var i = 0; i < prms.length; i++) {
currprmeter = prms[i].split("=");
frmelements[i] = new Array();
frmelements[i][0] = currprmeter[0];
frmelements[i][1] = currprmeter[1];
}
for(j = 0; j < frmelements.length; j++) {
if(frmelements[j][0].toLowerCase() == query.toLowerCase()) {
querystr = frmelements[j][1];
break;
}
}
return querystr;
}
function HashString(query) {
var qstring = self.location.href.split("#");
if(qstring.length < 2) return "";
return GetParameter(qstring, query);
}
--></script>
<link type="text/css" rel="Stylesheet" href="plugins/sitemap/styles/sitemap.css" />
<script type="text/javascript" src="plugins/sitemap/sitemap.js"></script>
<link type="text/css" rel="Stylesheet" href="plugins/page_notes/styles/page_notes.css" />
<script type="text/javascript" src="plugins/page_notes/page_notes.js"></script>
</head>
<body scroll="no">
<div id="outerContainer">
<div id="leftPanel">
<div id="interfaceControlFrame">
<div id="interfaceControlFrameMinimizeContainer">
<a title="Minimize" id="interfaceControlFrameMinimizeButton" onclick="collapse();"> </a>
<div id="interfaceControlFrameCloseContainer">
<a title="Close" id="interfaceControlFrameCloseButton" onclick="closePlayer();"> </a>
</div>
</div>
<div id="interfaceControlFrameLogoContainer">
<div id="interfaceControlFrameLogoImageContainer"></div>
<div id="interfaceControlFrameLogoCaptionContainer"></div>
</div>
<div id="interfaceControlFrameHeaderContainer">
<ul id="interfaceControlFrameHeader">
</ul>
</div>
<div id="interfaceControlFrameContainer">
</div>
</div>
</div>
<div id="rightPanel">
<iframe id="mainFrame" name="mainFrame" width="100%" height="100%" src="" frameborder="0" style="display: block;"></iframe>
</div>
</div>
<div id="maximizePanelContainer">
<iframe id="expandFrame" src="resources/expand.html" width="100%" height="100%" scrolling="no" allowtransparency="true" frameborder="0"></iframe>
</div>
</body>
</html>