123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353 |
- <!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') {
- window.history.replaceState(null, null, currentLocWithoutHash + newHash);
- } 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>
|