1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- // Licensed Materials - Property of IBM
- //
- // IBM Cognos Products: pps
- //
- // (C) Copyright IBM Corp. 2005, 2017
- //
- // US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
- var globalsLoaded = false;
- var nn7 = /netscape.*7\./i.test(navigator.userAgent) || /gecko/i.test(navigator.userAgent);
- var MacGecko = /gecko/i.test(navigator.userAgent) && /Mac OS/i.test(navigator.userAgent);
- var safari = /Safari/i.test(navigator.appName) && /MacPPC/i.test(navigator.platform);
- var serverMode = 1;
- var getChildrenMethod = "GET";
- var ppSkin;
- var imgPath;
- var virtualDirRoot;
- var sharedImgPath = "../ppwb/Icon/";
- var toolbarMenuIconPath;
- var iconPath;
- var helpurl;
- // Separator used to separate ppdsIds and codes
- // Using the ASCII record separator to avoid any collision with user data
- var codeSeparator = '\x1E';
- var renderAs = new Array();
- var main_ContextMenu = new Array();
- var gIconState = new Array();
- var gMenuState = new Array();
- var treeVisible = true;
- var parentTopframeCols = "192,*";
- var gLoadingText;
- var gMoreText;
- var webfxMenuUseHover = true;
- var menuImagePath = "";
- //This is set when user is editing a calculation. In which case, the calculation dialog is populated a bit differently.
- //-1 unknown, 0 insert, 1 edit, 2 rename, 3 delete
- var editingCalc = -1;
- var editingRank = -1;
- var gDimensionInfo = new Array();
- var dbg=0;
- var jsDebugAppendOutput;
- var jsDebugFontSize;
- var dimbar_first_item = 1;
- var dimbar_wrap = false;
- var dndManager = new dragAndDropManager();
- var dimCache = new dimensionCache();
- var dimTreeToolbarOpen = false;
- var chartOptionsTab = 1;
- var displayDataOnly;
- var isSplitView;
- var isChart;
- // for BUX
- var is_dashboard;
- var initial_open = true;
- var is_save;
- var no_auto_resize;
- var bux_report_name;
- var BUXToolbar;
- var PPESTopTarget;
- globalsLoaded = true;
|