code
stringlengths
1
2.08M
language
stringclasses
1 value
/** * @author [email protected] * ---------------------------------------------------------- * These functions use the same 'format' strings as the * java.text.SimpleDateFormat class, with minor exceptions. * The format string consists of the following abbreviations: * * Field | Full Form | S...
JavaScript
/** * @author Roger Wu */ (function($) { var jmenus = new Map(); // If the DWZ scope is not available, add it $.dwz = $.dwz || {}; $(window).resize(function(){ setTimeout(function(){ for (var i=0; i<jmenus.size();i++){ fillSpace(jmenus.element(i).key); } }, 100); }); $.fn.extend({ accordion: function(opti...
JavaScript
/** * reference dwz.util.date.js * @author [email protected] * */ (function($){ $.setRegional("datepicker", { dayNames:['Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat'], monthNames:['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'] }); $.fn.datepicker = function(opts){ ...
JavaScript
/** * @author Roger Wu */ (function($){ var allSelectBox = []; var killAllBox = function(bid){ $.each(allSelectBox, function(i){ if (allSelectBox[i] != bid) { if (!$("#" + allSelectBox[i])[0]) { $("#op_" + allSelectBox[i]).remove(); //allSelectBox.splice(i,1); } else { $("#op_" + allSel...
JavaScript
/** * @author [email protected] */ (function($){ $.fn.extend({ checkboxCtrl: function(parent){ return this.each(function(){ var $trigger = $(this); $trigger.click(function(){ var group = $trigger.attr("group"); if ($trigger.is(":checkbox")) { var type = $trigger.is(":checked") ? "al...
JavaScript
/** * @author Roger Wu */ (function($){ $.extend($.fn, { jBlindUp: function(options){ var op = $.extend({duration: 500, easing: "swing", call: function(){}}, options); return this.each(function(){ var $this = $(this); $(this).animate({height: 0}, { step: function(){}, duration: op.duration,...
JavaScript
/** * @license Copyright (c) 2009-2013, xhEditor.com. All rights reserved. * For licensing, see LGPL-LICENSE.txt or http://xheditor.com/license/lgpl.txt */ XHEDITOR.setLang({ 'default': '默认', 'none': '无', 'defaultReadTip': '可视化编辑器,alt+1到9键,切换到工具区,tab键,选择按钮,esc键,返回编辑', 'Cut': '剪切 (Ctrl+X)', 'Copy...
JavaScript
/** * @license Copyright (c) 2009-2013, xhEditor.com. All rights reserved. * For licensing, see LGPL-LICENSE.txt or http://xheditor.com/license/lgpl.txt */ XHEDITOR.setLang({ 'default': '預設', 'none': '無', 'defaultReadTip': '可視化編輯器,alt+1到9鍵,切換到工具區,tab鍵,選擇按鈕,esc鍵,返回編輯', 'Cut': '剪下 (Ctrl+X)', 'Copy...
JavaScript
/** * @license Copyright (c) 2009-2013, xhEditor.com. All rights reserved. * For licensing, see LGPL-LICENSE.txt or http://xheditor.com/license/lgpl.txt */ XHEDITOR.setLang({ 'default': 'Default', 'none': 'None', 'defaultReadTip': 'WYSIWYG Editor,press alt+1-9,toogle to tool area,press tab,select button,...
JavaScript
/** * SWFUpload: http://www.swfupload.org, http://swfupload.googlecode.com * * mmSWFUpload 1.0: Flash upload dialog - http://profandesign.se/swfupload/, http://www.vinterwebb.se/ * * SWFUpload is (c) 2006-2007 Lars Huring, Olov Nilz�n and Mammon Media and is released under the MIT License: * http://www.opensourc...
JavaScript
/*! * MultiUpload for xheditor * @requires xhEditor * * @author Yanis.Wang<[email protected]> * @site http://xheditor.com/ * @licence LGPL(http://www.opensource.org/licenses/lgpl-license.php) * * @Version: 0.9.2 (build 100505) */ var swfu,selQueue=[],selectID,arrMsg=[],allSize=0,uploadSize=0; function rem...
JavaScript
/** * HTML2Markdown - An HTML to Markdown converter. * * This implementation uses HTML DOM parsing for conversion. Parsing code was * abstracted out in a parsing function which should be easy to remove in favor * of other parsing libraries. * * Converted MarkDown was tested with ShowDown library for HTML rende...
JavaScript
/*! * WYSIWYG UBB Editor support for xhEditor * @requires xhEditor * * @author Yanis.Wang<[email protected]> * @site http://xheditor.com/ * @licence LGPL(http://www.opensource.org/licenses/lgpl-license.php) * * @Version: 0.9.12 (build 120228) */ function ubb2html(sUBB) { var i,sHtml=String(sUBB),arrcode=...
JavaScript
/* * HTMLParser - This implementation of parser assumes we are parsing HTML in browser * and user DOM methods available in browser for parsing HTML. * * @author Himanshu Gilani * */ var HTMLParser = function(node, handler, opts) { opts = opts || {}; var nodesToIgnore = opts['nodesToIgnore'] || []; var parse...
JavaScript
/** * jQuery ajax history plugins * @author [email protected] */ (function($){ $.extend({ History: { _hash: new Array(), _cont: undefined, _currentHash: "", _callback: undefined, init: function(cont, callback){ $.History._cont = cont; $.History._callback = callback; var current_...
JavaScript
/** * @author Roger Wu * @version 1.0 */ (function($){ $.extend($.fn, { jPanel:function(options){ var op = $.extend({header:"panelHeader", headerC:"panelHeaderContent", content:"panelContent", coll:"collapsable", exp:"expandable", footer:"panelFooter", footerC:"panelFooterContent"}, options); return this.ea...
JavaScript
function initEnv() { $("body").append(DWZ.frag["dwzFrag"]); if ( $.browser.msie && /6.0/.test(navigator.userAgent) ) { try { document.execCommand("BackgroundImageCache", false, true); }catch(e){} } //清理浏览器内存,只对IE起效 if ($.browser.msie) { window.setInterval("CollectGarbage();", 10000); } $(window).resiz...
JavaScript
/** * @author [email protected] * */ var navTab = { componentBox: null, // tab component. contain tabBox, prevBut, nextBut, panelBox _tabBox: null, _prevBut: null, _nextBut: null, _panelBox: null, _moreBut:null, _moreBox:null, _currentIndex: 0, _op: {id:"navTab", stTabBox:".navTab-tab", stPanelBox:".na...
JavaScript
/** * @author Roger Wu */ /*@cc_on _d=document;eval('var document=_d')@*/ /*@cc_on eval((function(props) {var code = [];for (var i = 0,l = props.length;i<l;i++){var prop = props[i];window['_'+prop]=window[prop];code.push(prop+'=_'+prop);}return 'var '+code.join(',');})('document self top parent alert setInterval clea...
JavaScript
/** * @requires jquery.validate.js * @author [email protected] */ (function($){ if ($.validator) { $.validator.addMethod("alphanumeric", function(value, element) { return this.optional(element) || /^\w+$/i.test(value); }, "Letters, numbers or underscores only please"); $.validator.addMethod("letterson...
JavaScript
/** * @desc 兼容不同的浏览器居中scrollCenter * @author [email protected] */ (function($){ $.fn.extend({ getWindowSize: function(){ if ($.browser.opera) { return { width: window.innerWidth, height: window.innerHeight }; } return { width: $(window).width(), height: $(window).height() }; }, /** * @param option...
JavaScript
/** * @author Roger Wu * @version 1.0 */ (function($){ $.fn.extend({ jTask:function(options){ return this.each(function(){ var $task = $(this); var id = $task.attr("id"); $task.click(function(e){ var dialog = $("body").data(id); if ($task.hasClass("selected")) { $("a.minimize", dia...
JavaScript
/** * * @author [email protected] * @param {Object} opts Several options */ (function($){ $.fn.extend({ pagination: function(opts){ var setting = { first$:"li.j-first", prev$:"li.j-prev", next$:"li.j-next", last$:"li.j-last", nums$:"li.j-num>a", jumpto$:"li.jumpto", pageNumFrag:'<li class="#liClass...
JavaScript
/*! Copyright (c) 2010 Brandon Aaron (http://brandonaaron.net) * Licensed under the MIT License (LICENSE.txt). * * Version 2.1.3-pre */ (function($){ $.fn.bgiframe = ($.browser.msie && /msie 6\.0/i.test(navigator.userAgent) ? function(s) { s = $.extend({ top : 'auto', // auto == .currentStyle.bord...
JavaScript
/** * @author Roger Wu */ (function($){ $.fn.jDrag = function(options){ if (typeof options == 'string') { if (options == 'destroy') return this.each(function(){ $(this).unbind('mousedown', $.rwdrag.start); $.data(this, 'pp-rwdrag', null); }); } return this.each(function(){ var el = $(t...
JavaScript
/** * @author [email protected] */ $.setRegional("alertMsg", { title:{error:"Error", info:"Information", warn:"Warning", correct:"Successful", confirm:"Confirmation"}, butMsg:{ok:"OK", yes:"Yes", no:"No", cancel:"Cancel"} }); var alertMsg = { _boxId: "#alertMsgBox", _bgId: "#alertBackground", _closeTimer: null...
JavaScript
/** * @author [email protected] * */ (function($){ $.printBox = function(rel){ var _printBoxId = 'printBox'; var $contentBox = rel ? $('#'+rel) : $("body"), $printBox = $('#'+_printBoxId); if ($printBox.size()==0){ $printBox = $('<div id="'+_printBoxId+'"></div>').appendTo("body"); } $printB...
JavaScript
/** * @author [email protected] * */ var DWZ = { // sbar: show sidebar keyCode: { ENTER: 13, ESC: 27, END: 35, HOME: 36, SHIFT: 16, TAB: 9, LEFT: 37, RIGHT: 39, UP: 38, DOWN: 40, DELETE: 46, BACKSPACE:8 }, eventType: { pageClear:"pageClear", // 用于重新ajaxLoad、关闭nabTab, 关闭dialog时,去除xheditor等需要特殊处理的资源 ...
JavaScript
/* * jQuery Easing v1.3 - http://gsgd.co.uk/sandbox/jquery/easing/ * * Uses the built in easing capabilities added In jQuery 1.1 * to offer multiple easing options * * TERMS OF USE - jQuery Easing * * Open source under the BSD License. * * Copyright © 2008 George McGinley Smith * All rights reserved. * ...
JavaScript
/** * @author [email protected] */ (function($){ var _lookup = {currentGroup:"", suffix:"", $target:null, pk:"id"}; var _util = { _lookupPrefix: function(key){ var strDot = _lookup.currentGroup ? "." : ""; return _lookup.currentGroup + strDot + key + _lookup.suffix; }, lookupPk: function(key){ retu...
JavaScript
// ┌─────────────────────────────────────────────────────────────────────┐ \\ // │ Raphaël 2.0.1 - JavaScript Vector Library │ \\ // ├─────────────────────────────────────────────────────────────────────┤ \\ // │ Copyright (c) 2008-2011 Dmitry Baranovskiy (http://raphaeljs.com) │ \\ // │ Cop...
JavaScript
/* * g.Raphael 0.5 - Charting library, based on Raphaël * * Copyright (c) 2009 Dmitry Baranovskiy (http://g.raphaeljs.com) * Licensed under the MIT (http://www.opensource.org/licenses/mit-license.php) license. */ (function () { function Piechart(paper, cx, cy, r, values, opts) { opts = opts || {}; ...
JavaScript
/*! * g.Raphael 0.5 - Charting library, based on Raphaël * * Copyright (c) 2009 Dmitry Baranovskiy (http://g.raphaeljs.com) * Licensed under the MIT (http://www.opensource.org/licenses/mit-license.php) license. */ /* * Tooltips on Element prototype */ /*\ * Element.popup [ method ] ** * Puts the context Ele...
JavaScript
/*! * g.Raphael 0.5 - Charting library, based on Raphaël * * Copyright (c) 2009 Dmitry Baranovskiy (http://g.raphaeljs.com) * Licensed under the MIT (http://www.opensource.org/licenses/mit-license.php) license. */ (function () { var colorValue = function (value, total, s, b) { return 'hsb(' + [...
JavaScript
/*! * g.Raphael 0.5 - Charting library, based on Raphaël * * Copyright (c) 2009 Dmitry Baranovskiy (http://g.raphaeljs.com) * Licensed under the MIT (http://www.opensource.org/licenses/mit-license.php) license. */ (function () { function shrink(values, dim) { var k = values.length / dim, j...
JavaScript
/*! * g.Raphael 0.5 - Charting library, based on Raphaël * * Copyright (c) 2009 Dmitry Baranovskiy (http://g.raphaeljs.com) * Licensed under the MIT (http://www.opensource.org/licenses/mit-license.php) license. */ (function () { var mmin = Math.min, mmax = Math.max; function finger(x, y, width, height, dir, e...
JavaScript
/** * @author Roger Wu * reference:dwz.drag.js, dwz.dialogDrag.js, dwz.resize.js, dwz.taskBar.js */ (function($){ $.pdialog = { _op:{height:300, width:580, minH:40, minW:50, total:20, max:false, mask:false, resizable:true, drawable:true, maxable:true,minable:true,fresh:true}, _current:null, _zIndex:42, getC...
JavaScript
/** * @author [email protected] * */ /** * 普通ajax表单提交 * @param {Object} form * @param {Object} callback * @param {String} confirmMsg 提示确认信息 */ function validateCallback(form, callback, confirmMsg) { var $form = $(form); if (!$form.valid()) { return false; } var _submitFn = function(){ $.ajax({ ...
JavaScript
/** * @author Roger Wu */ (function($){ $.fn.dialogDrag = function(options){ if (typeof options == 'string') { if (options == 'destroy') return this.each(function() { var dialog = this; $("div.dialogHeader", dialog).unbind("mousedown"); }); } r...
JavaScript
/** * Theme Plugins * @author [email protected] */ (function($){ $.fn.extend({ theme: function(options){ var op = $.extend({themeBase:"themes"}, options); var _themeHref = op.themeBase + "/#theme#/style.css"; return this.each(function(){ var jThemeLi = $(this).find(">li[theme]"); var setTheme =...
JavaScript
/** * @author [email protected] */ (function($){ var _op = { cursor: 'move', // selector 的鼠标手势 sortBoxs: 'div.sortDrag', //拖动排序项父容器 replace: false, //2个sortBox之间拖动替换 items: '> *', //拖动排序项选择器 selector: '', //拖动排序项用于拖动的子元素的选择器,为空时等于item zIndex: 1000 }; var sortDrag = { start:function($sortBox, $item,...
JavaScript
$(function(){ DWZ.init('/js/dwz/dwz.frag.xml', { loginUrl:'/login', loginTitle:'登录', statusCode:{ok:200, error:300, timeout:301}, pageInfo:{pageNum:'pageNum', numPerPage:'numPerPage', orderField:'orderField', orderDirection:'orderDirection'}, debug:false, callback:fun...
JavaScript
for(var i = 0; i < 40; i++) { var scriptId = 'u' + i; window[scriptId] = document.getElementById(scriptId); } $axure.eventManager.pageLoad( function (e) { if (true) { SetPanelState('u37', 'pd0u37','none','',500,'none','',500); } }); gv_vAlignTable['u31'] = 'top';HookHover('u16', false); gv_vAlignTab...
JavaScript
for(var i = 0; i < 0; i++) { var scriptId = 'u' + i; window[scriptId] = document.getElementById(scriptId); } $axure.eventManager.pageLoad( function (e) { });
JavaScript
for(var i = 0; i < 453; i++) { var scriptId = 'u' + i; window[scriptId] = document.getElementById(scriptId); } $axure.eventManager.pageLoad( function (e) { if (true) { SetWidgetSelected('u13'); SetWidgetSelected('u48'); SetPanelState('u18', 'pd3u18','none','',500,'none','',500); } }); function rd...
JavaScript
for(var i = 0; i < 324; i++) { var scriptId = 'u' + i; window[scriptId] = document.getElementById(scriptId); } $axure.eventManager.pageLoad( function (e) { if (true) { SetWidgetSelected('u11'); SetWidgetSelected('u69'); SetPanelState('u18', 'pd2u18','none','',500,'none','',500); } }); function rd...
JavaScript
for(var i = 0; i < 382; i++) { var scriptId = 'u' + i; window[scriptId] = document.getElementById(scriptId); } $axure.eventManager.pageLoad( function (e) { if (true) { SetWidgetSelected('u11'); SetWidgetSelected('u67'); SetPanelState('u18', 'pd2u18','none','',500,'none','',500); } }); function rd...
JavaScript
for(var i = 0; i < 292; i++) { var scriptId = 'u' + i; window[scriptId] = document.getElementById(scriptId); } $axure.eventManager.pageLoad( function (e) { if (true) { SetWidgetSelected('u126'); SetWidgetSelected('u132'); SetPanelState('u129', 'pd4u129','none','',500,'none','',500); SetPanelVisibility...
JavaScript
for(var i = 0; i < 197; i++) { var scriptId = 'u' + i; window[scriptId] = document.getElementById(scriptId); } $axure.eventManager.pageLoad( function (e) { if (true) { SetWidgetSelected('u15'); SetWidgetSelected('u37'); SetPanelState('u18', 'pd4u18','none','',500,'none','',500); } }); function rd...
JavaScript
for(var i = 0; i < 0; i++) { var scriptId = 'u' + i; window[scriptId] = document.getElementById(scriptId); } $axure.eventManager.pageLoad( function (e) { });
JavaScript
var configuration = (function() { var _ = function() { var r={},a=arguments; for(var i=0; i<a.length; i+=2) r[a[i]]=a[i+1]; return r; } var _creator = function() { return _(b,c,d,e,f,e);}; var b="showPageNotes",c=true,d="showPageNoteNames",e=false,f="loadFeedbackPlugin"; return _creator(); })()
JavaScript
/* * jQuery.splitter.js - two-pane splitter window plugin * * version 1.51 (2009/01/09) * * Dual licensed under the MIT and GPL licenses: * http://www.opensource.org/licenses/mit-license.php * http://www.gnu.org/licenses/gpl.html */ /** * The splitter() plugin implements a two-pane resizable splitter window. * The...
JavaScript
if (typeof console == 'undefined') console = { log: function () { } }; // sniff chrome var CHROME_5_LOCAL = false; var CHROME = false; var WEBKIT = false; (function () { var chromeRegex = /Chrome\/([0-9]+).([0-9]+)/g ; var chromeMatch = chromeRegex.exec(navigator.userAgent); CHROME = Boolea...
JavaScript
$axure = function () { }; if (typeof console == 'undefined') console = { log: function () { } }; if (window._axUtils) $axure.utils = _axUtils; function setUpController() { $axure.utils = _axUtils; var _page = {}; $axure.page = _page; _axUtils.makeBindable(_page, ['load']); v...
JavaScript
// ************************** GLOBAL VARS *********************************// // A table to cache the outerHTML of the _rtf elements before the rollover // state is applied. var gv_OriginalTextCache = new Object(); // A table to cache the src image before the rollover // state is applied. var gv_OriginalImgSr...
JavaScript
/* * * * * */ (function() { // define the root namespace object window._axUtils = { }; // ------------------------------------------------------------------------ // Makes an object bindable // ------------------------------------------------------------------------ ...
JavaScript
//Check if IE var bIE = false; if ((index = navigator.userAgent.indexOf("MSIE")) >= 0) { bIE = true; } $axure = function (query) { return $axure.query(query); }; // ******* AxQuery and Page metadata ******** // (function () { var _pageData; var _pageNameToFileName = {}; var _fn = ...
JavaScript
for(var i = 0; i < 0; i++) { var scriptId = 'u' + i; window[scriptId] = document.getElementById(scriptId); } $axure.eventManager.pageLoad( function (e) { });
JavaScript
for(var i = 0; i < 424; i++) { var scriptId = 'u' + i; window[scriptId] = document.getElementById(scriptId); } $axure.eventManager.pageLoad( function (e) { if (true) { SetWidgetSelected('u15'); SetWidgetSelected('u23'); SetPanelState('u18', 'pd4u18','none','',500,'none','',500); } }); function rd...
JavaScript
for(var i = 0; i < 378; i++) { var scriptId = 'u' + i; window[scriptId] = document.getElementById(scriptId); } $axure.eventManager.pageLoad( function (e) { if (true) { SetWidgetSelected('u13'); SetPanelState('u18', 'pd3u18','none','',500,'none','',500); } }); function rdo431(e) { if (true) { ...
JavaScript
for(var i = 0; i < 328; i++) { var scriptId = 'u' + i; window[scriptId] = document.getElementById(scriptId); } $axure.eventManager.pageLoad( function (e) { if (true) { SetWidgetSelected('u73'); SetWidgetSelected('u11'); SetPanelState('u18', 'pd2u18','none','',500,'none','',500); } }); function rd...
JavaScript
for(var i = 0; i < 0; i++) { var scriptId = 'u' + i; window[scriptId] = document.getElementById(scriptId); } $axure.eventManager.pageLoad( function (e) { });
JavaScript
for(var i = 0; i < 116; i++) { var scriptId = 'u' + i; window[scriptId] = document.getElementById(scriptId); } $axure.eventManager.pageLoad( function (e) { if (true) { SetWidgetSelected('u15'); SetWidgetSelected('u35'); SetPanelState('u18', 'pd4u18','none','',500,'none','',500); } }); function rd...
JavaScript
for(var i = 0; i < 115; i++) { var scriptId = 'u' + i; window[scriptId] = document.getElementById(scriptId); } $axure.eventManager.pageLoad( function (e) { if (true) { SetWidgetSelected('u13'); SetWidgetSelected('u46'); SetPanelState('u18', 'pd3u18','none','',500,'none','',500); } }); function rd...
JavaScript
for(var i = 0; i < 56; i++) { var scriptId = 'u' + i; window[scriptId] = document.getElementById(scriptId); } $axure.eventManager.pageLoad( function (e) { }); gv_vAlignTable['u31'] = 'center';document.getElementById('u36_img').tabIndex = 0; HookHover('u36', false); u36.style.cursor = 'pointer'; $axure.eve...
JavaScript
for(var i = 0; i < 357; i++) { var scriptId = 'u' + i; window[scriptId] = document.getElementById(scriptId); } $axure.eventManager.pageLoad( function (e) { if (true) { SetWidgetSelected('u15'); SetWidgetSelected('u33'); SetPanelState('u18', 'pd4u18','none','',500,'none','',500); } }); function rd...
JavaScript
for(var i = 0; i < 0; i++) { var scriptId = 'u' + i; window[scriptId] = document.getElementById(scriptId); } $axure.eventManager.pageLoad( function (e) { });
JavaScript
for(var i = 0; i < 117; i++) { var scriptId = 'u' + i; window[scriptId] = document.getElementById(scriptId); } $axure.eventManager.pageLoad( function (e) { if (true) { SetWidgetSelected('u87'); SetWidgetSelected('u11'); SetPanelState('u18', 'pd2u18','none','',500,'none','',500); } }); function rd...
JavaScript
for(var i = 0; i < 232; i++) { var scriptId = 'u' + i; window[scriptId] = document.getElementById(scriptId); } $axure.eventManager.pageLoad( function (e) { if (true) { SetPanelState('u37', 'pd0u37','none','',500,'none','',500); } }); gv_vAlignTable['u122'] = 'top';gv_vAlignTable['u21'] = 'top';docume...
JavaScript
for(var i = 0; i < 0; i++) { var scriptId = 'u' + i; window[scriptId] = document.getElementById(scriptId); } $axure.eventManager.pageLoad( function (e) { });
JavaScript
for(var i = 0; i < 307; i++) { var scriptId = 'u' + i; window[scriptId] = document.getElementById(scriptId); } $axure.eventManager.pageLoad( function (e) { if (true) { SetWidgetSelected('u11'); SetWidgetSelected('u79'); SetPanelState('u18', 'pd2u18','none','',500,'none','',500); } }); function rd...
JavaScript
for(var i = 0; i < 0; i++) { var scriptId = 'u' + i; window[scriptId] = document.getElementById(scriptId); } $axure.eventManager.pageLoad( function (e) { });
JavaScript
for(var i = 0; i < 115; i++) { var scriptId = 'u' + i; window[scriptId] = document.getElementById(scriptId); } $axure.eventManager.pageLoad( function (e) { }); function rdo431(e) { if (true) { parent.window.close(); NewTab($axure.globalVariableProvider.getLinkUrl('3_1_员工年假表管理.html'), ""); } ...
JavaScript
for(var i = 0; i < 292; i++) { var scriptId = 'u' + i; window[scriptId] = document.getElementById(scriptId); } $axure.eventManager.pageLoad( function (e) { if (true) { SetWidgetSelected('u13'); SetWidgetSelected('u56'); SetPanelState('u18', 'pd3u18','none','',500,'none','',500); } }); function rd...
JavaScript
for(var i = 0; i < 0; i++) { var scriptId = 'u' + i; window[scriptId] = document.getElementById(scriptId); } $axure.eventManager.pageLoad( function (e) { });
JavaScript
for(var i = 0; i < 260; i++) { var scriptId = 'u' + i; window[scriptId] = document.getElementById(scriptId); } $axure.eventManager.pageLoad( function (e) { if (true) { SetWidgetSelected('u9'); SetWidgetSelected('u90'); SetPanelState('u18', 'pd1u18','none','',500,'none','',500); } }); function rdo...
JavaScript
for(var i = 0; i < 18; i++) { var scriptId = 'u' + i; window[scriptId] = document.getElementById(scriptId); } $axure.eventManager.pageLoad( function (e) { }); gv_vAlignTable['u3'] = 'center';gv_vAlignTable['u10'] = 'center';gv_vAlignTable['u17'] = 'center';gv_vAlignTable['u5'] = 'center';gv_vAlignTable['u13'] ...
JavaScript
for(var i = 0; i < 1041; i++) { var scriptId = 'u' + i; window[scriptId] = document.getElementById(scriptId); } $axure.eventManager.pageLoad( function (e) { if (true) { SetWidgetSelected('u83'); SetWidgetSelected('u11'); SetPanelState('u18', 'pd2u18','none','',500,'none','',500); } }); function r...
JavaScript
for(var i = 0; i < 276; i++) { var scriptId = 'u' + i; window[scriptId] = document.getElementById(scriptId); } $axure.eventManager.pageLoad( function (e) { if (true) { SetWidgetSelected('u15'); SetWidgetSelected('u29'); SetPanelState('u18', 'pd4u18','none','',500,'none','',500); } }); function rd...
JavaScript
for(var i = 0; i < 0; i++) { var scriptId = 'u' + i; window[scriptId] = document.getElementById(scriptId); } $axure.eventManager.pageLoad( function (e) { });
JavaScript
for(var i = 0; i < 1075; i++) { var scriptId = 'u' + i; window[scriptId] = document.getElementById(scriptId); } $axure.eventManager.pageLoad( function (e) { if (true) { SetWidgetSelected('u85'); SetWidgetSelected('u11'); SetPanelState('u18', 'pd2u18','none','',500,'none','',500); } }); function r...
JavaScript
for(var i = 0; i < 0; i++) { var scriptId = 'u' + i; window[scriptId] = document.getElementById(scriptId); } $axure.eventManager.pageLoad( function (e) { });
JavaScript
for(var i = 0; i < 69; i++) { var scriptId = 'u' + i; window[scriptId] = document.getElementById(scriptId); } $axure.eventManager.pageLoad( function (e) { if (true) { SetWidgetSelected('u15'); SetWidgetSelected('u29'); SetPanelState('u18', 'pd4u18','none','',500,'none','',500); } }); function rdo...
JavaScript
for(var i = 0; i < 575; i++) { var scriptId = 'u' + i; window[scriptId] = document.getElementById(scriptId); } $axure.eventManager.pageLoad( function (e) { if (true) { SetWidgetSelected('u15'); SetWidgetSelected('u25'); SetPanelState('u18', 'pd4u18','none','',500,'none','',500); } }); function rd...
JavaScript
for(var i = 0; i < 115; i++) { var scriptId = 'u' + i; window[scriptId] = document.getElementById(scriptId); } $axure.eventManager.pageLoad( function (e) { if (true) { SetWidgetSelected('u13'); SetWidgetSelected('u42'); SetPanelState('u18', 'pd3u18','none','',500,'none','',500); } }); function rd...
JavaScript
for(var i = 0; i < 376; i++) { var scriptId = 'u' + i; window[scriptId] = document.getElementById(scriptId); } $axure.eventManager.pageLoad( function (e) { if (true) { SetWidgetSelected('u11'); SetWidgetSelected('u71'); SetPanelState('u18', 'pd2u18','none','',500,'none','',500); } }); function rd...
JavaScript
for(var i = 0; i < 524; i++) { var scriptId = 'u' + i; window[scriptId] = document.getElementById(scriptId); } $axure.eventManager.pageLoad( function (e) { if (true) { SetWidgetSelected('u13'); SetWidgetSelected('u50'); SetPanelState('u18', 'pd3u18','none','',500,'none','',500); } }); function rd...
JavaScript
for(var i = 0; i < 594; i++) { var scriptId = 'u' + i; window[scriptId] = document.getElementById(scriptId); } $axure.eventManager.pageLoad( function (e) { if (true) { SetWidgetSelected('u13'); SetWidgetSelected('u54'); SetPanelState('u18', 'pd3u18','none','',500,'none','',500); } }); function rd...
JavaScript

JavaScript
for(var i = 0; i < 238; i++) { var scriptId = 'u' + i; window[scriptId] = document.getElementById(scriptId); } $axure.eventManager.pageLoad( function (e) { if (true) { SetWidgetSelected('u9'); SetWidgetSelected('u98'); SetPanelState('u18', 'pd1u18','none','',500,'none','',500); } }); function rdo...
JavaScript
for(var i = 0; i < 532; i++) { var scriptId = 'u' + i; window[scriptId] = document.getElementById(scriptId); } $axure.eventManager.pageLoad( function (e) { if (true) { SetWidgetSelected('u276'); SetWidgetSelected('u371'); SetPanelState('u285', 'pd1u285','none','',500,'none','',500); } }); functio...
JavaScript
for(var i = 0; i < 530; i++) { var scriptId = 'u' + i; window[scriptId] = document.getElementById(scriptId); } $axure.eventManager.pageLoad( function (e) { if (true) { SetWidgetSelected('u13'); SetWidgetSelected('u52'); SetPanelState('u18', 'pd3u18','none','',500,'none','',500); } }); function rd...
JavaScript
for(var i = 0; i < 350; i++) { var scriptId = 'u' + i; window[scriptId] = document.getElementById(scriptId); } $axure.eventManager.pageLoad( function (e) { if (true) { SetWidgetSelected('u65'); SetWidgetSelected('u11'); SetPanelState('u18', 'pd2u18','none','',500,'none','',500); } }); function rd...
JavaScript
for(var i = 0; i < 0; i++) { var scriptId = 'u' + i; window[scriptId] = document.getElementById(scriptId); } $axure.eventManager.pageLoad( function (e) { });
JavaScript
for(var i = 0; i < 94; i++) { var scriptId = 'u' + i; window[scriptId] = document.getElementById(scriptId); } $axure.eventManager.pageLoad( function (e) { }); gv_vAlignTable['u86'] = 'top';gv_vAlignTable['u25'] = 'top';gv_vAlignTable['u16'] = 'top';gv_vAlignTable['u46'] = 'top';gv_vAlignTable['u76'] = 'top';gv...
JavaScript
// use this to isolate the scope (function () { var SHOW_HIDE_ANIMATION_DURATION = 0; $(document).ready(function () { $axure.player.createPluginHost({ id: 'sitemapHost', context: 'interface', title: 'Sitemap' }); generateSitemap(); ...
JavaScript
// use this to isolate the scope (function () { if (!window.configuration.showPageNotes) { return; } $(document).ready(function () { $axure.player.createPluginHost({ id: 'pageNotesHost', context: 'interface', title: 'Page Notes' }); gen...
JavaScript
for(var i = 0; i < 115; i++) { var scriptId = 'u' + i; window[scriptId] = document.getElementById(scriptId); } $axure.eventManager.pageLoad( function (e) { if (true) { SetWidgetSelected('u7'); SetWidgetSelected('u109'); SetPanelState('u18', 'pd0u18','none','',500,'none','',500); } }); function rd...
JavaScript
for(var i = 0; i < 355; i++) { var scriptId = 'u' + i; window[scriptId] = document.getElementById(scriptId); } $axure.eventManager.pageLoad( function (e) { if (true) { SetWidgetSelected('u13'); SetWidgetSelected('u46'); SetPanelState('u18', 'pd3u18','none','',500,'none','',500); } }); function rd...
JavaScript
for(var i = 0; i < 577; i++) { var scriptId = 'u' + i; window[scriptId] = document.getElementById(scriptId); } $axure.eventManager.pageLoad( function (e) { if (true) { SetWidgetSelected('u13'); SetWidgetSelected('u42'); SetPanelState('u18', 'pd3u18','none','',500,'none','',500); } }); function rd...
JavaScript