summaryrefslogtreecommitdiffstats
path: root/ecomp-sdk/epsdk-app-overlay/src/main/webapp/static/fusion
diff options
context:
space:
mode:
Diffstat (limited to 'ecomp-sdk/epsdk-app-overlay/src/main/webapp/static/fusion')
-rw-r--r--ecomp-sdk/epsdk-app-overlay/src/main/webapp/static/fusion/raptor/js/projected_overlay.js129
-rw-r--r--ecomp-sdk/epsdk-app-overlay/src/main/webapp/static/fusion/raptor/js/tree/ajax.js194
-rw-r--r--ecomp-sdk/epsdk-app-overlay/src/main/webapp/static/fusion/raptor/js/tree/context-menu.js444
-rw-r--r--ecomp-sdk/epsdk-app-overlay/src/main/webapp/static/fusion/raptor/js/tree/drag-drop-folder-tree.js1059
-rw-r--r--ecomp-sdk/epsdk-app-overlay/src/main/webapp/static/fusion/sample/css/flexslider.css275
-rw-r--r--ecomp-sdk/epsdk-app-overlay/src/main/webapp/static/fusion/sample/css/fonts/flexslider-icon.eotbin2082 -> 0 bytes
-rw-r--r--ecomp-sdk/epsdk-app-overlay/src/main/webapp/static/fusion/sample/css/fonts/flexslider-icon.svg19
-rw-r--r--ecomp-sdk/epsdk-app-overlay/src/main/webapp/static/fusion/sample/css/fonts/flexslider-icon.ttfbin1892 -> 0 bytes
-rw-r--r--ecomp-sdk/epsdk-app-overlay/src/main/webapp/static/fusion/sample/css/fonts/flexslider-icon.woffbin1268 -> 0 bytes
-rw-r--r--ecomp-sdk/epsdk-app-overlay/src/main/webapp/static/fusion/sample/images/Calendar-16x16.pngbin552 -> 0 bytes
-rw-r--r--ecomp-sdk/epsdk-app-overlay/src/main/webapp/static/fusion/sample/images/arrow-next.pngbin1561 -> 0 bytes
-rw-r--r--ecomp-sdk/epsdk-app-overlay/src/main/webapp/static/fusion/sample/images/arrow-prev.pngbin1557 -> 0 bytes
-rw-r--r--ecomp-sdk/epsdk-app-overlay/src/main/webapp/static/fusion/sample/images/copyicon.pngbin235 -> 0 bytes
-rw-r--r--ecomp-sdk/epsdk-app-overlay/src/main/webapp/static/fusion/sample/images/deleteicon.gifbin579 -> 0 bytes
-rw-r--r--ecomp-sdk/epsdk-app-overlay/src/main/webapp/static/fusion/sample/images/example-frame.pngbin33699 -> 0 bytes
-rw-r--r--ecomp-sdk/epsdk-app-overlay/src/main/webapp/static/fusion/sample/images/loading.gifbin6820 -> 0 bytes
-rw-r--r--ecomp-sdk/epsdk-app-overlay/src/main/webapp/static/fusion/sample/js/eye.js34
-rw-r--r--ecomp-sdk/epsdk-app-overlay/src/main/webapp/static/fusion/sample/js/jquery.flexslider-min.js5
-rw-r--r--ecomp-sdk/epsdk-app-overlay/src/main/webapp/static/fusion/sample/js/slides.min.jquery.js20
-rw-r--r--ecomp-sdk/epsdk-app-overlay/src/main/webapp/static/fusion/sample/js/spacegallery.js235
-rw-r--r--ecomp-sdk/epsdk-app-overlay/src/main/webapp/static/fusion/sample/js/utils.js252
-rw-r--r--ecomp-sdk/epsdk-app-overlay/src/main/webapp/static/fusion/sample/org_chart/images/bkgd.pngbin133 -> 0 bytes
-rw-r--r--ecomp-sdk/epsdk-app-overlay/src/main/webapp/static/fusion/sample/org_chart/images/raspberry.jpgbin5755 -> 0 bytes
23 files changed, 0 insertions, 2666 deletions
diff --git a/ecomp-sdk/epsdk-app-overlay/src/main/webapp/static/fusion/raptor/js/projected_overlay.js b/ecomp-sdk/epsdk-app-overlay/src/main/webapp/static/fusion/raptor/js/projected_overlay.js
deleted file mode 100644
index 00ce65a1..00000000
--- a/ecomp-sdk/epsdk-app-overlay/src/main/webapp/static/fusion/raptor/js/projected_overlay.js
+++ /dev/null
@@ -1,129 +0,0 @@
-// Create an overlay on the map from a projected image...
-// Author. John D. Coryat 01/2008
-// USNaviguide LLC - http://www.usnaviguide.com
-// Thanks go to Mile Williams EInsert: http://econym.googlepages.com/einsert.js, Google's GOverlay Example and Bratliff's suggestion...
-// Opacity code from TPhoto: http://gmaps.tommangan.us/addtphoto.html
-// This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
-//
-// Parameters:
-// imageUrl: URL of the image
-// bounds: Bounds object of image destination
-// addZoom: Added Zoom factor as a parameter to the imageUrl (include complete parameter, including separater like '?zoom='
-//
-
-function ProjectedOverlay(imageUrl, bounds, addZoom)
-{
- this.url_ = imageUrl ;
- this.bounds_ = bounds ;
- this.addZ_ = addZoom ; // Add the zoom to the image as a parameter
-
- // Is this IE, if so we need to use AlphaImageLoader
-
- this.ie = false ;
- var agent = navigator.userAgent.toLowerCase();
- if ((agent.indexOf("msie") > -1) && (agent.indexOf("opera") < 1))
- {
- this.ie = true ;
- }
-}
-
-ProjectedOverlay.prototype = new GOverlay();
-
-ProjectedOverlay.prototype.initialize = function(map)
-{
- var div = document.createElement("div") ;
- div.style.position = "absolute" ;
- div.setAttribute('id',this.id) ;
- map.getPane(G_MAP_MAP_PANE).appendChild(div) ;
- this.map_ = map ;
- this.div_ = div ;
- if( this.percentOpacity )
- {
- this.setOpacity(this.percentOpacity) ;
- }
-}
-
-// Remove the main DIV from the map pane
-
-ProjectedOverlay.prototype.remove = function()
-{
- this.div_.parentNode.removeChild(this.div_);
- delete(this.map) ;
- delete(this.div) ;
-}
-
-// Copy our data to a new ProjectedOverlay...
-
-ProjectedOverlay.prototype.copy = function()
-{
- return new ProjectedOverlay(this.url_, this.bounds_, this.addZ_);
-}
-
-// Redraw based on the current projection and zoom level...
-
-ProjectedOverlay.prototype.redraw = function(force)
-{
- // We only need to redraw if the coordinate system has changed
- if (!force)
- {
- return ;
- }
-
- var c1 = this.map_.fromLatLngToDivPixel(this.bounds_.getSouthWest());
- var c2 = this.map_.fromLatLngToDivPixel(this.bounds_.getNorthEast());
-
- // Now position our DIV based on the DIV coordinates of our bounds
-
- this.div_.style.width = Math.abs(c2.x - c1.x) + "px";
- this.div_.style.height = Math.abs(c2.y - c1.y) + "px";
- this.div_.style.left = Math.min(c2.x, c1.x) + "px";
- this.div_.style.top = Math.min(c2.y, c1.y) + "px";
-
- var url = this.url_ ;
- var extn = url.substring(url.length - 4, 4) ;
-
- if ( this.addZ_ )
- {
- url += this.addZ_ + this.map_.getZoom() ;
- }
-
- if (this.ie && extn.toLowerCase() == '.png')
- {
- var loader = "filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='" + url + "', sizingMethod='scale');" ;
- this.div_.innerHTML = '<div style="height:' + this.div_.style.height + 'px; width:' + this.div_.style.width + 'px; ' + loader + '" ></div>' ;
- } else
- {
- this.div_.innerHTML = '<img src="' + url + '" width=' + this.div_.style.width + ' height=' + this.div_.style.height + ' >' ;
- }
-}
-
-ProjectedOverlay.prototype.setOpacity=function(opacity)
-{
- if (opacity < 0)
- {
- opacity = 0 ;
- }
- if(opacity > 100)
- {
- opacity = 100 ;
- }
- var c = opacity/100 ;
- var d = document.getElementById( this.id ) ;
-
- if (typeof(d.style.filter) =='string')
- {
- d.style.filter = 'alpha(opacity:' + opacity + ')' ;
- }
- if (typeof(d.style.KHTMLOpacity) == 'string' )
- {
- d.style.KHTMLOpacity = c ;
- }
- if (typeof(d.style.MozOpacity) == 'string')
- {
- d.style.MozOpacity = c ;
- }
- if (typeof(d.style.opacity) == 'string')
- {
- d.style.opacity = c ;
- }
-}
diff --git a/ecomp-sdk/epsdk-app-overlay/src/main/webapp/static/fusion/raptor/js/tree/ajax.js b/ecomp-sdk/epsdk-app-overlay/src/main/webapp/static/fusion/raptor/js/tree/ajax.js
deleted file mode 100644
index a727447d..00000000
--- a/ecomp-sdk/epsdk-app-overlay/src/main/webapp/static/fusion/raptor/js/tree/ajax.js
+++ /dev/null
@@ -1,194 +0,0 @@
-/* Simple AJAX Code-Kit (SACK) v1.6.1 */
-/* ©2005 Gregory Wild-Smith */
-/* www.twilightuniverse.com */
-/* Software licenced under a modified X11 licence,
- see documentation or authors website for more details */
-
-function sack(file) {
- this.xmlhttp = null;
- this.resetData = function() {
- this.method = "POST";
- this.queryStringSeparator = "?";
- this.argumentSeparator = "&";
- this.URLString = "";
- this.encodeURIString = true;
- this.execute = false;
- this.element = null;
- this.elementObj = null;
- this.requestFile = file;
- this.vars = new Object();
- this.responseStatus = new Array(2);
- };
-
- this.resetFunctions = function() {
- this.onLoading = function() { };
- this.onLoaded = function() { };
- this.onInteractive = function() { };
- this.onCompletion = function() { };
- this.onError = function() { };
- this.onFail = function() { };
- };
-
- this.reset = function() {
- this.resetFunctions();
- this.resetData();
- };
-
- this.createAJAX = function() {
- try {
- this.xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");
- } catch (e1) {
- try {
- this.xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
- } catch (e2) {
- this.xmlhttp = null;
- }
- }
-
- if (! this.xmlhttp) {
- if (typeof XMLHttpRequest != "undefined") {
- this.xmlhttp = new XMLHttpRequest();
- } else {
- this.failed = true;
- }
- }
- };
-
- this.setVar = function(name, value){
- this.vars[name] = Array(value, false);
- };
-
- this.encVar = function(name, value, returnvars) {
- if (true == returnvars) {
- return Array(encodeURIComponent(name), encodeURIComponent(value));
- } else {
- this.vars[encodeURIComponent(name)] = Array(encodeURIComponent(value), true);
- }
- }
-
- this.processURLString = function(string, encode) {
- encoded = encodeURIComponent(this.argumentSeparator);
- regexp = new RegExp(this.argumentSeparator + "|" + encoded);
- varArray = string.split(regexp);
- for (i = 0; i < varArray.length; i++){
- urlVars = varArray[i].split("=");
- if (true == encode){
- this.encVar(urlVars[0], urlVars[1]);
- } else {
- this.setVar(urlVars[0], urlVars[1]);
- }
- }
- }
-
- this.createURLString = function(urlstring) {
- if (this.encodeURIString && this.URLString.length) {
- this.processURLString(this.URLString, true);
- }
- if (urlstring) {
- if (this.URLString.length) {
- this.URLString += this.argumentSeparator + urlstring;
- } else {
- this.URLString = urlstring;
- }
- }
-
- // prevents caching of URLString
- this.setVar("rndval", new Date().getTime());
-
- urlstringtemp = new Array();
- for (key in this.vars) {
- if (false == this.vars[key][1] && true == this.encodeURIString) {
- encoded = this.encVar(key, this.vars[key][0], true);
- delete this.vars[key];
- this.vars[encoded[0]] = Array(encoded[1], true);
- key = encoded[0];
- }
-
- urlstringtemp[urlstringtemp.length] = key + "=" + this.vars[key][0];
- }
- if (urlstring){
- this.URLString += this.argumentSeparator + urlstringtemp.join(this.argumentSeparator);
- } else {
- this.URLString += urlstringtemp.join(this.argumentSeparator);
- }
- }
-
- this.runResponse = function() {
- eval(this.response);
- }
-
- this.runAJAX = function(urlstring) {
- if (this.failed) {
- this.onFail();
- } else {
- this.createURLString(urlstring);
-
- if (this.element) {
- this.elementObj = document.getElementById(this.element);
- }
-
- if (this.xmlhttp) {
- var self = this;
- if (this.method == "GET") {
- totalurlstring = this.requestFile + this.queryStringSeparator + this.URLString;
- this.xmlhttp.open(this.method, totalurlstring, true);
- } else {
- this.xmlhttp.open(this.method, this.requestFile, true);
- try {
- this.xmlhttp.setRequestHeader("Content-Type", "application/x-www-form-urlencoded")
- } catch (e) { }
- }
- //document.myForm.action=urlstring;
- //document.myForm.submit();
- this.xmlhttp.onreadystatechange = function() {
- switch (self.xmlhttp.readyState) {
- case 1:
- self.onLoading();
- break;
- case 2:
- self.onLoaded();
- break;
- case 3:
- self.onInteractive();
- break;
- case 4:
- self.response = self.xmlhttp.responseText;
- self.responseXML = self.xmlhttp.responseXML;
- self.responseStatus[0] = self.xmlhttp.status;
- self.responseStatus[1] = self.xmlhttp.statusText;
-
- if (self.execute) {
- self.runResponse();
- }
-
- if (self.elementObj) {
- elemNodeName = self.elementObj.nodeName;
- elemNodeName.toLowerCase();
- if (elemNodeName == "input"
- || elemNodeName == "select"
- || elemNodeName == "option"
- || elemNodeName == "textarea") {
- self.elementObj.value = self.response;
- } else {
- self.elementObj.innerHTML = self.response;
- }
- }
- if (self.responseStatus[0] == "200") {
- self.onCompletion();
- } else {
- self.onError();
- }
-
- self.URLString = "";
- break;
- }
- };
- this.xmlhttp.send(this.URLString);
-
- }
- }
- };
-
- this.reset() ;
- this.createAJAX();
-}
diff --git a/ecomp-sdk/epsdk-app-overlay/src/main/webapp/static/fusion/raptor/js/tree/context-menu.js b/ecomp-sdk/epsdk-app-overlay/src/main/webapp/static/fusion/raptor/js/tree/context-menu.js
deleted file mode 100644
index 70fb7096..00000000
--- a/ecomp-sdk/epsdk-app-overlay/src/main/webapp/static/fusion/raptor/js/tree/context-menu.js
+++ /dev/null
@@ -1,444 +0,0 @@
-/************************************************************************************************************
-Context menu
-Copyright (C) 2006 DTHMLGoodies.com, Alf Magne Kalleland
-
-This library is free software; you can redistribute it and/or
-modify it under the terms of the GNU Lesser General Public
-License as published by the Free Software Foundation; either
-version 2.1 of the License, or (at your option) any later version.
-
-This library is distributed in the hope that it will be useful,
-but WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
-Lesser General Public License for more details.
-
-You should have received a copy of the GNU Lesser General Public
-License along with this library; if not, write to the Free Software
-Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
-
-Dhtmlgoodies.com., hereby disclaims all copyright interest in this script
-written by Alf Magne Kalleland.
-
-Alf Magne Kalleland, 2006
-Owner of DHTMLgoodies.com
-
-
-************************************************************************************************************/
-
-DHTMLGoodies_menuModel = function()
-{
- var menuItems;
- this.menuItems = new Array();
-
-
-}
-
-/************************************************************************************************************
-* DHTML menu model class
-*
-* Created: October, 30th, 2006
-* @class Purpose of class: Saves menu item data
-*
-*
-* Demos of this class: demo-menu-strip.html
-*
-* Update log:
-*
-************************************************************************************************************/
-
-
-/**
-* @constructor
-* @class Purpose of class: Organize menu items for different menu widgets. demos of menus: (<a href="../../demos/demo-menu-strip.html" target="_blank">Demo</a>)
-* @version 1.0
-* @author Alf Magne Kalleland(www.dhtmlgoodies.com)
-*/
-
-
-DHTMLGoodies_menuModel.prototype = {
- // {{{ addItem()
- /**
- * Add separator (special type of menu item)
- *
- * @param int id of menu item
- * @param string itemText = text of menu item
- * @param string itemIcon = file name of menu icon(in front of menu text. Path will be imagePath for the DHTMLSuite + file name)
- * @param string url = Url of menu item
- * @param int parent id of menu item
- * @param String jsFunction Name of javascript function to execute. It will replace the url param. The function with this name will be called and the element triggering the action will be
- * sent as argument. Name of the element which triggered the menu action may also be sent as a second argument. That depends on the widget. The context menu is an example where
- * the element triggering the context menu is sent as second argument to this function.
- *
- * @public
- */
- addItem : function(id,itemText,itemIcon,url,parentId,jsFunction)
- {
- this.menuItems[id] = new Array();
- this.menuItems[id]['id'] = id;
- this.menuItems[id]['itemText'] = itemText;
- this.menuItems[id]['itemIcon'] = itemIcon;
- this.menuItems[id]['url'] = url;
- this.menuItems[id]['parentId'] = parentId;
- this.menuItems[id]['separator'] = false;
- this.menuItems[id]['jsFunction'] = jsFunction;
-
- }
- ,
- // {{{ addSeparator()
- /**
- * Add separator (special type of menu item)
- *
- * @param int id of menu item
- * @param int parent id of menu item
- * @public
- */
- addSeparator : function(id,parentId)
- {
- this.menuItems[id] = new Array();
- this.menuItems[id]['parentId'] = parentId;
- this.menuItems[id]['separator'] = true;
- }
- ,
- // {{{ init()
- /**
- * Initilizes the menu model. This method should be called when all items has been added to the model.
- *
- *
- * @public
- */
- init : function()
- {
- this.__getDepths();
-
- }
- // }}}
- ,
- // {{{ __getDepths()
- /**
- * Create variable for the depth of each menu item.
- *
- *
- * @private
- */
- getItems : function()
- {
- return this.menuItems;
- }
-
- ,
- // {{{ __getDepths()
- /**
- * Create variable for the depth of each menu item.
- *
- *
- * @private
- */
- __getDepths : function()
- {
- for(var no in this.menuItems){
- this.menuItems[no]['depth'] = 1;
- if(this.menuItems[no]['parentId']){
- this.menuItems[no]['depth'] = this.menuItems[this.menuItems[no]['parentId']]['depth']+1;
- }
- }
- }
- ,
- // {{{ __hasSubs()
- /**
- * Does a menu item have sub elements ?
- *
- *
- * @private
- */
- // }}}
- __hasSubs : function(id)
- {
- for(var no in this.menuItems){ // Looping through menu items
- if(this.menuItems[no]['parentId']==id)return true;
- }
- return false;
- }
-
-
-}
-
-
-
-var referenceToDHTMLSuiteContextMenu;
-
-
-DHTMLGoodies_contextMenu = function()
-{
- var menuModels;
- var menuItems;
- var menuObject; // Reference to context menu div
- var layoutCSS;
- var menuUls; // Array of <ul> elements
- var width; // Width of context menu
- var srcElement; // Reference to the element which triggered the context menu, i.e. the element which caused the context menu to be displayed.
- var indexCurrentlyDisplayedMenuModel; // Index of currently displayed menu model.
- var imagePath;
-
- this.menuModels = new Array();
- this.menuObject = false;
- this.menuUls = new Array();
- this.width = 100;
- this.srcElement = false;
- this.indexCurrentlyDisplayedMenuModel = false;
- this.imagePath = imgFolder+'tree/';
-
-}
-
-DHTMLGoodies_contextMenu.prototype =
-{
-
- setWidth : function(newWidth)
- {
- this.width = newWidth;
- }
- // }}}
- ,
- // {{{ setLayoutCss()
- /**
- * Add menu items
- *
- * @param String cssFileName Name of css file
- *
- * @public
- */
- setLayoutCss : function(cssFileName)
- {
- this.layoutCSS = cssFileName;
- }
- // }}}
- ,
- // {{{ attachToElement()
- /**
- * Add menu items
- *
- * @param Object HTML Element = Reference to html element
- * @param String elementId = String id of element(optional). An alternative to HTML Element
- *
- * @public
- */
- attachToElement : function(element,elementId,menuModel)
- {
- window.refToThisContextMenu = this;
- if(!element && elementId)element = document.getElementById(elementId);
- if(!element.id){
- element.id = 'context_menu' + Math.random();
- element.id = element.id.replace('.','');
- }
- this.menuModels[element.id] = menuModel;
- element.oncontextmenu = this.__displayContextMenu;
- //element.onmousedown = function() { window.refToThisContextMenu.__setReference(window.refToThisContextMenu); };
- document.documentElement.onclick = this.__hideContextMenu;
-
- }
- // }}}
- ,
- // {{{ __setReference()
- /**
- * Creates a reference to current context menu object. (Note: This method should be deprecated as only one context menu object is needed)
- *
- * @param Object context menu object = Reference to context menu object
- *
- * @private
- */
- __setReference : function(obj)
- {
- referenceToDHTMLSuiteContextMenu = obj;
- }
- ,
- // {{{ __displayContextMenu()
- /**
- * Displays the context menu
- *
- * @param Event e
- *
- * @private
- */
- __displayContextMenu : function(e)
- {
- if(document.all)e = event;
- var ref = referenceToDHTMLSuiteContextMenu;
- ref.srcElement = ref.getSrcElement(e);
-
- if(!ref.indexCurrentlyDisplayedMenuModel || ref.indexCurrentlyDisplayedMenuModel!=this.id){
- if(ref.indexCurrentlyDisplayedMenuModel){
- ref.menuObject.innerHTML = '';
- }else{
- ref.__createDivs();
- }
- ref.menuItems = ref.menuModels[this.id].getItems();
- ref.__createMenuItems();
- }
- ref.indexCurrentlyDisplayedMenuModel=this.id;
-
- ref.menuObject.style.left = (e.clientX + Math.max(document.body.scrollLeft,document.documentElement.scrollLeft)) + 'px';
- ref.menuObject.style.top = (e.clientY + Math.max(document.body.scrollTop,document.documentElement.scrollTop)) + 'px';
- ref.menuObject.style.display='block';
- return false;
-
- }
- // }}}
- ,
- // {{{ __displayContextMenu()
- /**
- * Add menu items
- *
- * @param Event e
- *
- * @private
- */
- __hideContextMenu : function()
- {
- var ref = referenceToDHTMLSuiteContextMenu;
- if(ref.menuObject)ref.menuObject.style.display = 'none';
-
-
- }
- // }}}
- ,
- // {{{ __createDivs()
- /**
- * Creates general divs for the menu
- *
- *
- * @private
- */
- __createDivs : function()
- {
- this.menuObject = document.createElement('DIV');
- this.menuObject.className = 'DHTMLSuite_contextMenu';
- this.menuObject.style.backgroundImage = 'url(\'' + this.imagePath + 'context-menu-gradient.gif' + '\')';
- this.menuObject.style.backgroundRepeat = 'repeat-y';
- if(this.width)this.menuObject.style.width = this.width + 'px';
- document.body.appendChild(this.menuObject);
- }
- // }}}
- ,
-
- // {{{ __mouseOver()
- /**
- * Display mouse over effect when moving the mouse over a menu item
- *
- *
- * @private
- */
- __mouseOver : function()
- {
- this.className = 'DHTMLSuite_item_mouseover';
- if(!document.all){
- this.style.backgroundPosition = 'left center';
- }
-
- }
- // }}}
- ,
- // {{{ __mouseOut()
- /**
- * Remove mouse over effect when moving the mouse away from a menu item
- *
- *
- * @private
- */
- __mouseOut : function()
- {
- this.className = '';
- if(!document.all){
- this.style.backgroundPosition = '1px center';
- }
- }
- // }}}
- ,
- // {{{ __createMenuItems()
- /**
- * Create menu items
- *
- *
- * @private
- */
- __evalUrl : function()
- {
- var js = this.getAttribute('jsFunction');
- if(!js)js = this.jsFunction;
- if(js)eval(js);
-
- }
- // }}}
- ,
- // {{{ __createMenuItems()
- /**
- * Create menu items
- *
- *
- * @private
- */
- __createMenuItems : function()
- {
- window.refToContextMenu = this; // Reference to menu strip object
- this.menuUls = new Array();
- for(var no in this.menuItems){ // Looping through menu items
- if(!this.menuUls[0]){ // Create main ul element
- this.menuUls[0] = document.createElement('UL');
- this.menuObject.appendChild(this.menuUls[0]);
- }
-
- if(this.menuItems[no]['depth']==1){
-
- if(this.menuItems[no]['separator']){
- var li = document.createElement('DIV');
- li.className = 'DHTMLSuite_contextMenu_separator';
- }else{
- var li = document.createElement('LI');
- if(this.menuItems[no]['jsFunction']){
- this.menuItems[no]['url'] = this.menuItems[no]['jsFunction'] + '(this,referenceToDHTMLSuiteContextMenu.srcElement)';
- }
- if(this.menuItems[no]['itemIcon']){
- li.style.backgroundImage = 'url(\'' + this.menuItems[no]['itemIcon'] + '\')';
- if(!document.all)li.style.backgroundPosition = '1px center';
-
- }
-
- if(this.menuItems[no]['url']){
- var url = this.menuItems[no]['url'] + '';
- var tmpUrl = url + '';
- li.setAttribute('jsFunction',url);
- li.jsFunction = url;
- li.onclick = this.__evalUrl;
-
- }
-
- li.innerHTML = '<a href="#" onclick="return false">' + this.menuItems[no]['itemText'] + '</a>';
- li.onmouseover = this.__mouseOver;
- li.onmouseout = this.__mouseOut;
- }
- this.menuUls[0].appendChild(li);
- }
- }
- }
-
- ,
-
- // {{{ getSrcElement()
- /**
- *
- * Returns a reference to the element which triggered an event.
- * @param Event e = Event object
- *
- *
- * @private
- */
- getSrcElement : function(e)
- {
- var el;
- // Dropped on which element
- if (e.target) el = e.target;
- else if (e.srcElement) el = e.srcElement;
- if (el.nodeType == 3) // defeat Safari bug
- el = el.parentNode;
- return el;
- }
-
-} \ No newline at end of file
diff --git a/ecomp-sdk/epsdk-app-overlay/src/main/webapp/static/fusion/raptor/js/tree/drag-drop-folder-tree.js b/ecomp-sdk/epsdk-app-overlay/src/main/webapp/static/fusion/raptor/js/tree/drag-drop-folder-tree.js
deleted file mode 100644
index 165306f2..00000000
--- a/ecomp-sdk/epsdk-app-overlay/src/main/webapp/static/fusion/raptor/js/tree/drag-drop-folder-tree.js
+++ /dev/null
@@ -1,1059 +0,0 @@
- /************************************************************************************************************
-Drag and drop folder tree
-Copyright (C) 2006 DTHMLGoodies.com, Alf Magne Kalleland
-
-This library is free software; you can redistribute it and/or
-modify it under the terms of the GNU Lesser General Public
-License as published by the Free Software Foundation; either
-version 2.1 of the License, or (at your option) any later version.
-
-This library is distributed in the hope that it will be useful,
-but WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
-Lesser General Public License for more details.
-
-You should have received a copy of the GNU Lesser General Public
-License along with this library; if not, write to the Free Software
-Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
-
-Dhtmlgoodies.com., hereby disclaims all copyright interest in this script
-written by Alf Magne Kalleland.
-
-Alf Magne Kalleland, 2006
-Owner of DHTMLgoodies.com
-
-
-************************************************************************************************************/
-
- var JSTreeObj;
- var treeUlCounter = 0;
- var nodeId = 1;
-
- /* Constructor */
- function JSDragDropTree()
- {
- var idOfTree;
- var imageFolder;
- var folderImage;
- var plusImage;
- var minusImage;
- var maximumDepth;
- var dragNode_source;
- var dragNode_parent;
- var dragNode_sourceNextSib;
- var dragNode_noSiblings;
- var ajaxObjects;
-
- var dragNode_destination;
- var floatingContainer;
- var dragDropTimer;
- var dropTargetIndicator;
- var insertAsSub;
- var indicator_offsetX;
- var indicator_offsetX_sub;
- var indicator_offsetY;
-
- this.imageFolder = imgFolder+'tree/';
- this.folderImage = 'dhtmlgoodies_folder.gif';
- this.plusImage = 'dhtmlgoodies_plus.gif';
- this.minusImage = 'dhtmlgoodies_minus.gif';
- this.maximumDepth = 6;
- var messageMaximumDepthReached;
- var messageNoRightsOnFolder;
- var filePathRenameItem;
- var filePathDeleteItem;
- var additionalRenameRequestParameters = {};
- var additionalDeleteRequestParameters = {};
-
- var renameAllowed;
- var deleteAllowed;
- var addAllowed;
- var currentlyActiveItem;
- var contextMenu;
- var currentItemToEdit; // Reference to item currently being edited(example: renamed)
- var selectedItem; // ADDED BY FARHAN
- var helpObj;
-
- this.contextMenu = false;
- this.floatingContainer = document.createElement('UL');
- this.floatingContainer.style.position = 'absolute';
- this.floatingContainer.style.display='none';
- this.floatingContainer.id = 'floatingContainer';
- this.insertAsSub = false;
- document.body.appendChild(this.floatingContainer);
- this.dragDropTimer = -1;
- this.dragNode_noSiblings = false;
- this.currentItemToEdit = false;
-
- if(document.all){
- this.indicator_offsetX = 2; // Offset position of small black lines indicating where nodes would be dropped.
- this.indicator_offsetX_sub = 4;
- this.indicator_offsetY = 2;
- }else{
- this.indicator_offsetX = 1; // Offset position of small black lines indicating where nodes would be dropped.
- this.indicator_offsetX_sub = 3;
- this.indicator_offsetY = 2;
- }
- if(navigator.userAgent.indexOf('Opera')>=0){
- this.indicator_offsetX = 2; // Offset position of small black lines indicating where nodes would be dropped.
- this.indicator_offsetX_sub = 3;
- this.indicator_offsetY = -7;
- }
-
- this.messageMaximumDepthReached = ''; // Use '' if you don't want to display a message
- this.messageNoRightsOnFolder = 'You do not have access to this folder';
-
- this.renameAllowed = true;
- this.deleteAllowed = true;
- this.addAllowed = true;
- this.currentlyActiveItem = false;
- this.filePathRenameItem = 'folderTree_updateItem.php';
- this.filePathDeleteItem = 'tree';
- this.ajaxObjects = new Array();
- this.helpObj = false;
-
- this.RENAME_STATE_BEGIN = 1;
- this.RENAME_STATE_CANCELED = 2;
- this.RENAME_STATE_REQUEST_SENDED = 3;
- this.renameState = null;
- }
-
-
- /* JSDragDropTree class */
- JSDragDropTree.prototype = {
- // {{{ addEvent()
- /**
- *
- * This function adds an event listener to an element on the page.
- *
- * @param Object whichObject = Reference to HTML element(Which object to assigne the event)
- * @param String eventType = Which type of event, example "mousemove" or "mouseup"
- * @param functionName = Name of function to execute.
- *
- * @public
- */
- addEvent : function(whichObject,eventType,functionName)
- {
- if(whichObject.attachEvent){
- whichObject['e'+eventType+functionName] = functionName;
- whichObject[eventType+functionName] = function(){whichObject['e'+eventType+functionName]( window.event );}
- whichObject.attachEvent( 'on'+eventType, whichObject[eventType+functionName] );
- } else
- whichObject.addEventListener(eventType,functionName,false);
- }
- // }}}
- ,
- // {{{ removeEvent()
- /**
- *
- * This function removes an event listener from an element on the page.
- *
- * @param Object whichObject = Reference to HTML element(Which object to assigne the event)
- * @param String eventType = Which type of event, example "mousemove" or "mouseup"
- * @param functionName = Name of function to execute.
- *
- * @public
- */
- removeEvent : function(whichObject,eventType,functionName)
- {
- if(whichObject.detachEvent){
- whichObject.detachEvent('on'+eventType, whichObject[eventType+functionName]);
- whichObject[eventType+functionName] = null;
- } else
- whichObject.removeEventListener(eventType,functionName,false);
- }
- ,
- Get_Cookie : function(name) {
- var start = document.cookie.indexOf(name+"=");
- var len = start+name.length+1;
- if ((!start) && (name != document.cookie.substring(0,name.length))) return null;
- if (start == -1) return null;
- var end = document.cookie.indexOf(";",len);
- if (end == -1) end = document.cookie.length;
- return unescape(document.cookie.substring(len,end));
- }
- ,
- // This function has been slightly modified
- Set_Cookie : function(name,value,expires,path,domain,secure) {
- expires = expires * 60*60*24*1000;
- var today = new Date();
- var expires_date = new Date( today.getTime() + (expires) );
- var cookieString = name + "=" +escape(value) +
- ( (expires) ? ";expires=" + expires_date.toGMTString() : "") +
- ( (path) ? ";path=" + path : "") +
- ( (domain) ? ";domain=" + domain : "") +
- ( (secure) ? ";secure" : "");
- document.cookie = cookieString;
- }
- ,
- setFileNameRename : function(newFileName)
- {
- this.filePathRenameItem = newFileName;
- }
- ,
- setFileNameDelete : function(newFileName)
- {
- this.filePathDeleteItem = newFileName;
- }
- ,
- setAdditionalRenameRequestParameters : function(requestParameters)
- {
- this.additionalRenameRequestParameters = requestParameters;
- }
- ,
- setAdditionalDeleteRequestParameters : function(requestParameters)
- {
- this.additionalDeleteRequestParameters = requestParameters;
- }
- ,setRenameAllowed : function(renameAllowed)
- {
- this.renameAllowed = renameAllowed;
- }
- ,
- setDeleteAllowed : function(deleteAllowed)
- {
- this.deleteAllowed = deleteAllowed;
- }
- ,
- setAddAllowed : function(addAllowed)
- {
- this.addAllowed = addAllowed;
- }
- ,setMaximumDepth : function(maxDepth)
- {
- this.maximumDepth = maxDepth;
- }
- ,setMessageMaximumDepthReached : function(newMessage)
- {
- this.messageMaximumDepthReached = newMessage;
- }
- ,
- setImageFolder : function(path)
- {
- this.imageFolder = path;
- }
- ,
- setFolderImage : function(imagePath)
- {
- this.folderImage = imagePath;
- }
- ,
- setPlusImage : function(imagePath)
- {
- this.plusImage = imagePath;
- }
- ,
- setMinusImage : function(imagePath)
- {
- this.minusImage = imagePath;
- }
- ,
- setTreeId : function(idOfTree)
- {
- this.idOfTree = idOfTree;
- }
- ,
- expandAll : function()
- {
- var menuItems = document.getElementById(this.idOfTree).getElementsByTagName('LI');
- for(var no=0;no<menuItems.length;no++){
- var subItems = menuItems[no].getElementsByTagName('UL');
- if(subItems.length>0 && subItems[0].style.display!='block'){
- JSTreeObj.showHideNode(false,menuItems[no].id);
- }
- }
- }
- ,
- collapseAll : function()
- {
- var menuItems = document.getElementById(this.idOfTree).getElementsByTagName('LI');
- for(var no=0;no<menuItems.length;no++){
- var subItems = menuItems[no].getElementsByTagName('UL');
- if(subItems.length>0 && subItems[0].style.display=='block'){
- JSTreeObj.showHideNode(false,menuItems[no].id);
- }
- }
- JSTreeObj.showHideNode(false,menuItems[0].id);
- }
- ,
- /*
- Find top pos of a tree node
- */
- getTopPos : function(obj){
- var top = obj.offsetTop/1;
- while((obj = obj.offsetParent) != null){
- if(obj.tagName!='HTML')top += obj.offsetTop;
- }
- if(document.all)top = top/1 + 13; else top = top/1 + 4;
- return top;
- }
- ,
- /*
- Find left pos of a tree node
- */
- getLeftPos : function(obj){
- var left = obj.offsetLeft/1 + 1;
- while((obj = obj.offsetParent) != null){
- if(obj.tagName!='HTML')left += obj.offsetLeft;
- }
-
- if(document.all)left = left/1 - 2;
- return left;
- }
-
- ,
- showHideNode : function(e,inputId)
- {
- if(inputId){
- if(!document.getElementById(inputId))return;
- thisNode = document.getElementById(inputId).getElementsByTagName('IMG')[0];
- }else {
- thisNode = this;
- if(this.tagName=='A')thisNode = this.parentNode.getElementsByTagName('IMG')[0];
-
- }
- if(thisNode.style.visibility=='hidden')return;
- var parentNode = thisNode.parentNode;
- inputId = parentNode.id.replace(/[^0-9]/g,'');
- if(thisNode.src.indexOf(JSTreeObj.plusImage)>=0){
- thisNode.src = thisNode.src.replace(JSTreeObj.plusImage,JSTreeObj.minusImage);
- var ul = parentNode.getElementsByTagName('UL')[0];
- ul.style.display='block';
- if(!initExpandedNodes)initExpandedNodes = ',';
- if(initExpandedNodes.indexOf(',' + inputId + ',')<0) initExpandedNodes = initExpandedNodes + inputId + ',';
- }else{
- thisNode.src = thisNode.src.replace(JSTreeObj.minusImage,JSTreeObj.plusImage);
- parentNode.getElementsByTagName('UL')[0].style.display='none';
- initExpandedNodes = initExpandedNodes.replace(',' + inputId,'');
- }
- JSTreeObj.Set_Cookie('dhtmlgoodies_expandedNodes',initExpandedNodes,500);
- return false;
- }
- ,
- /*expand only the selected node*/
- showSelectedNode : function(selectedItemId)
- {
- var menuItems = document.getElementById(this.idOfTree).getElementsByTagName('LI'); // Get an array of all menu items
-
- var selectedNode ;
- for(var no=0;no<menuItems.length;no++){
- if (selectedItemId != null && selectedItemId == menuItems[no].id.replace(/[^0-9]/gi,'')){
- selectedNode = menuItems[no];
- break;
- }
- }
- do{
- if (selectedNode != null){
- var subItems = selectedNode.getElementsByTagName('UL');
- if(subItems && subItems.length>0 && subItems[0].style.display!='block'){
- JSTreeObj.showHideNode(false,selectedNode.id);
- }
- selectedNode = selectedNode.parentNode;
- }
- }while (selectedNode && selectedNode.id.replace(/[^0-9]/gi,'') != '0');
- return false;
- }
- ,
- isDeleteAllowed : function(selectedItemId)
- {
- var menuItems = document.getElementById(this.idOfTree).getElementsByTagName('LI'); // Get an array of all menu items
-
- var selectedNode ;
- for(var no=0;no<menuItems.length;no++){
- if (selectedItemId != null && selectedItemId == menuItems[no].id.replace(/[^0-9]/gi,'')){
- selectedNode = menuItems[no];
- break;
- }
- }
- if (selectedNode && selectedNode.getAttribute('noDelete') && selectedNode.getAttribute('noDelete') == 'true')
- return false;
- else
- return true;
-
- }
- ,
- isAddAllowed : function(selectedItemId)
- {
- var menuItems = document.getElementById(this.idOfTree).getElementsByTagName('LI'); // Get an array of all menu items
-
- var selectedNode ;
- for(var no=0;no<menuItems.length;no++){
- if (selectedItemId != null && selectedItemId == menuItems[no].id.replace(/[^0-9]/gi,'')){
- selectedNode = menuItems[no];
- break;
- }
- }
- if (selectedNode && selectedNode.getAttribute('noChild') && selectedNode.getAttribute('noChild') == 'true')
- return false;
- else
- return true;
-
- }
- ,
- /* Initialize drag */
- initDrag : function(e)
- {
- if(document.all)e = event;
-
- var subs = JSTreeObj.floatingContainer.getElementsByTagName('LI');
- if(subs.length>0){
- if(JSTreeObj.dragNode_sourceNextSib){
- JSTreeObj.dragNode_parent.insertBefore(JSTreeObj.dragNode_source,JSTreeObj.dragNode_sourceNextSib);
- }else{
- JSTreeObj.dragNode_parent.appendChild(JSTreeObj.dragNode_source);
- }
- }
-
- JSTreeObj.dragNode_source = this.parentNode;
- JSTreeObj.dragNode_parent = this.parentNode.parentNode;
- JSTreeObj.dragNode_sourceNextSib = false;
-
-
- if(JSTreeObj.dragNode_source.nextSibling)JSTreeObj.dragNode_sourceNextSib = JSTreeObj.dragNode_source.nextSibling;
- JSTreeObj.dragNode_destination = false;
- JSTreeObj.dragDropTimer = 0;
- JSTreeObj.timerDrag();
- return false;
- }
- ,
- timerDrag : function()
- {
- if(this.dragDropTimer>=0 && this.dragDropTimer<10){
- this.dragDropTimer = this.dragDropTimer + 1;
- setTimeout('JSTreeObj.timerDrag()',20);
- return;
- }
- if(this.dragDropTimer==10)
- {
- JSTreeObj.floatingContainer.style.display='block';
- JSTreeObj.floatingContainer.appendChild(JSTreeObj.dragNode_source);
- }
- }
- ,
- moveDragableNodes : function(e)
- {
- if(JSTreeObj.dragDropTimer<10)return;
- if(document.all)e = event;
- dragDrop_x = e.clientX/1 + 5 + document.body.scrollLeft;
- dragDrop_y = e.clientY/1 + 5 + document.documentElement.scrollTop;
-
- JSTreeObj.floatingContainer.style.left = dragDrop_x + 'px';
- JSTreeObj.floatingContainer.style.top = dragDrop_y + 'px';
-
- var thisObj = this;
- if(thisObj.tagName=='A' || thisObj.tagName=='IMG')thisObj = thisObj.parentNode;
-
- JSTreeObj.dragNode_noSiblings = false;
- var tmpVar = thisObj.getAttribute('noSiblings');
- if(!tmpVar)tmpVar = thisObj.noSiblings;
- if(tmpVar=='true')JSTreeObj.dragNode_noSiblings=true;
-
- if(thisObj && thisObj.id)
- {
- JSTreeObj.dragNode_destination = thisObj;
- var img = thisObj.getElementsByTagName('IMG')[1];
- var tmpObj= JSTreeObj.dropTargetIndicator;
- tmpObj.style.display='block';
-
- var eventSourceObj = this;
- if(JSTreeObj.dragNode_noSiblings && eventSourceObj.tagName=='IMG')eventSourceObj = eventSourceObj.nextSibling;
-
- var tmpImg = tmpObj.getElementsByTagName('IMG')[0];
- if(this.tagName=='A' || JSTreeObj.dragNode_noSiblings){
- tmpImg.src = tmpImg.src.replace('ind1','ind2');
- JSTreeObj.insertAsSub = true;
- tmpObj.style.left = (JSTreeObj.getLeftPos(eventSourceObj) + JSTreeObj.indicator_offsetX_sub) + 'px';
- }else{
- tmpImg.src = tmpImg.src.replace('ind2','ind1');
- JSTreeObj.insertAsSub = false;
- tmpObj.style.left = (JSTreeObj.getLeftPos(eventSourceObj) + JSTreeObj.indicator_offsetX) + 'px';
- }
-
- tmpObj.style.top = (JSTreeObj.getTopPos(thisObj) + JSTreeObj.indicator_offsetY) - document.getElementById("scrollableTable").scrollTop + 'px' ;
-
-
- }
- var divHeight = document.getElementById("scrollableTable").style.height;
- divHeight = divHeight.substring(0, divHeight.indexOf("px"));
- if (dragDrop_y - JSTreeObj.getTopPos(document.getElementById("scrollableTable"))< 50)
- document.getElementById("scrollableTable").scrollTop = document.getElementById("scrollableTable").scrollTop - 5;
- else if (dragDrop_y - JSTreeObj.getTopPos(document.getElementById("scrollableTable")) > divHeight - 50)
- document.getElementById("scrollableTable").scrollTop = document.getElementById("scrollableTable").scrollTop + 5;
-
- return false;
-
- }
- ,
- dropDragableNodes:function()
- {
- if(JSTreeObj.dragDropTimer<10){
- JSTreeObj.dragDropTimer = -1;
- return;
- }
- var showMessage = false;
- var message = '';
- if(JSTreeObj.dragNode_destination){ // Check depth
- var countUp = JSTreeObj.dragDropCountLevels(JSTreeObj.dragNode_destination,'up');
- var countDown = JSTreeObj.dragDropCountLevels(JSTreeObj.dragNode_source,'down');
- var countLevels = countUp/1 + countDown/1 + (JSTreeObj.insertAsSub?1:0);
-
- if(countLevels>JSTreeObj.maximumDepth){
- JSTreeObj.dragNode_destination = false;
- showMessage = true; // Used later down in this function
- message = JSTreeObj.messageMaximumDepthReachedl
- }
- }
- if (JSTreeObj.dragNode_destination && JSTreeObj.dragNode_destination.getAttribute('noDrop') == 'true'){
- JSTreeObj.dragNode_destination = false;
- showMessage = true; // Used later down in this function
- message = JSTreeObj.messageNoRightsOnFolder;
- }
-
-
- if(JSTreeObj.dragNode_destination){
-
- if(JSTreeObj.insertAsSub){
- var uls = JSTreeObj.dragNode_destination.getElementsByTagName('UL');
- if(uls.length>0){
- ul = uls[0];
- ul.style.display='block';
-
- var lis = ul.getElementsByTagName('LI');
-
- if(lis.length>0){ // Sub elements exists - drop dragable node before the first one
- ul.insertBefore(JSTreeObj.dragNode_source,lis[0]);
- }else { // No sub exists - use the appendChild method - This line should not be executed unless there's something wrong in the HTML, i.e empty <ul>
- ul.appendChild(JSTreeObj.dragNode_source);
- }
- }else{
- var ul = document.createElement('UL');
- ul.style.display='block';
- JSTreeObj.dragNode_destination.appendChild(ul);
- ul.appendChild(JSTreeObj.dragNode_source);
- }
- var img = JSTreeObj.dragNode_destination.getElementsByTagName('IMG')[0];
- img.style.visibility='visible';
- img.src = img.src.replace(JSTreeObj.plusImage,JSTreeObj.minusImage);
-
-
- }else{
- if(JSTreeObj.dragNode_destination.nextSibling){
- var nextSib = JSTreeObj.dragNode_destination.nextSibling;
- nextSib.parentNode.insertBefore(JSTreeObj.dragNode_source,nextSib);
- }else{
- JSTreeObj.dragNode_destination.parentNode.appendChild(JSTreeObj.dragNode_source);
- }
- }
- /* Clear parent object */
- var tmpObj = JSTreeObj.dragNode_parent;
- var lis = tmpObj.getElementsByTagName('LI');
- if(lis.length==0){
- var img = tmpObj.parentNode.getElementsByTagName('IMG')[0];
- img.style.visibility='hidden'; // Hide [+],[-] icon
- tmpObj.parentNode.removeChild(tmpObj);
- }
-
- }else{
- // Putting the item back to it's original location
-
- if(JSTreeObj.dragNode_sourceNextSib){
- JSTreeObj.dragNode_parent.insertBefore(JSTreeObj.dragNode_source,JSTreeObj.dragNode_sourceNextSib);
- }else{
- JSTreeObj.dragNode_parent.appendChild(JSTreeObj.dragNode_source);
- }
-
- }
- JSTreeObj.dropTargetIndicator.style.display='none';
- JSTreeObj.dragDropTimer = -1;
- if(showMessage && message){ alert(message); return;}
- //save tree structure
- saveMyTree_byForm();
- }
- ,
- createDropIndicator : function()
- {
- this.dropTargetIndicator = document.createElement('DIV');
- this.dropTargetIndicator.style.position = 'absolute';
- this.dropTargetIndicator.style.display='none';
- var img = document.createElement('IMG');
- img.src = this.imageFolder + 'dragDrop_ind1.gif';
- img.id = 'dragDropIndicatorImage';
- this.dropTargetIndicator.appendChild(img);
- document.body.appendChild(this.dropTargetIndicator);
-
- }
- ,
- dragDropCountLevels : function(obj,direction,stopAtObject){
- var countLevels = 0;
- if(direction=='up'){
- while(obj.parentNode && obj.parentNode!=stopAtObject){
- obj = obj.parentNode;
- if(obj.tagName=='UL')countLevels = countLevels/1 +1;
- }
- return countLevels;
- }
-
- if(direction=='down'){
- var subObjects = obj.getElementsByTagName('LI');
- for(var no=0;no<subObjects.length;no++){
- countLevels = Math.max(countLevels,JSTreeObj.dragDropCountLevels(subObjects[no],"up",obj));
- }
- return countLevels;
-
- }
- }
- ,
- cancelEvent : function()
- {
- return false;
- }
- ,
- cancelSelectionEvent : function()
- {
-
- if(JSTreeObj.dragDropTimer<10)return true;
- return false;
- }
- ,getNodeOrders : function(initObj,saveString)
- {
-
- if(!saveString)var saveString = '';
- if(!initObj){
- initObj = document.getElementById(this.idOfTree);
-
- }
- var lis = initObj.getElementsByTagName('LI');
-
- if(lis.length>0){
- var li = lis[0];
- while(li){
- if(li.id){
- if(saveString.length>0)saveString = saveString + ',';
- var numericID = li.id.replace(/[^0-9]/gi,'');
- if(numericID.length==0)numericID='A';
- var numericParentID = li.parentNode.parentNode.id.replace(/[^0-9]/gi,'');
- if(numericID!='0'){
- saveString = saveString + numericID;
- saveString = saveString + '-';
-
-
- if(li.parentNode.id!=this.idOfTree)saveString = saveString + numericParentID; else saveString = saveString + '0';
- }
- var ul = li.getElementsByTagName('UL');
- if(ul.length>0){
- saveString = this.getNodeOrders(ul[0],saveString);
- }
- }
- li = li.nextSibling;
- }
- }
-
- if(initObj.id == this.idOfTree){
- return saveString;
-
- }
- return saveString;
- }
- ,highlightItem : function(inputObj,e)
- {
- if(JSTreeObj.currentlyActiveItem)JSTreeObj.currentlyActiveItem.className = '';
- this.className = 'highlightedNodeItem';
- JSTreeObj.currentlyActiveItem = this;
- }
- ,clickItem : function(inputObj,e)
- {
- if(JSTreeObj.currentlyActiveItem) JSTreeObj.currentlyActiveItem.className = '';
- this.className = 'highlightedNodeItem';
- JSTreeObj.currentlyActiveItem = this;
- JSTreeObj.selectedItem = this;
- },
- removeHighlight : function()
- {
- //if(JSTreeObj.currentlyActiveItem)JSTreeObj.currentlyActiveItem.className = '';
- //JSTreeObj.currentlyActiveItem = false;
- }
- ,
- hasSubNodes : function(obj)
- {
- var subs = obj.getElementsByTagName('LI');
- if(subs.length>0)return true;
- return false;
- }
- ,
- deleteItem : function(obj1,obj2)
- {
- var message = 'Click OK to delete item ' + obj2.innerHTML;
- if(this.hasSubNodes(obj2.parentNode)) message = message + ' and it\'s sub nodes';
- if(confirm(message)){
- this.__deleteItem_step2(obj2.parentNode); // Sending <LI> tag to the __deleteItem_step2 method
- //deleteItem();
- }else{
- return false;
- }
-
-
- }
- ,
- addItem : function(obj1,obj2)
- {
- var message = 'Click OK to Add item ' + obj2.innerHTML;
- return this.__addItem_step2(obj2.parentNode); // Sending <LI> tag to the __addItem_step2 method
- }
- ,
- createMenuReport : function(obj1,obj2)
- {
- JSTreeObj.selectedItem = obj2;
- createReport();
- }
- ,
- runMenuReport : function(obj1,obj2)
- {
- JSTreeObj.selectedItem = obj2;
- runReport();
-
- }
- ,
- editMenuReport : function(obj1,obj2)
- {
- JSTreeObj.selectedItem = obj2;
- editReport();
- }
- ,
- deleteMenuReport : function(obj1,obj2)
- {
- JSTreeObj.selectedItem = obj2;
- if (confirm("Do you want to delete this report?")){
- deleteReport();
- }
-
- }
- ,
- __refreshDisplay : function(obj)
- {
- if(this.hasSubNodes(obj))return;
-
- var img = obj.getElementsByTagName('IMG')[0];
- img.style.visibility = 'hidden';
- }
- ,
- __deleteItem_step2 : function(obj)
- {
-
- var saveString = obj.id.replace(/[^0-9]/gi,'');
-
- var lis = obj.getElementsByTagName('LI');
- for(var no=0;no<lis.length;no++){
- saveString = saveString + ',' + lis[no].id.replace(/[^0-9]/gi,'');
- }
-
- // Creating ajax object and send items
- var ajaxIndex = JSTreeObj.ajaxObjects.length;
- JSTreeObj.ajaxObjects[ajaxIndex] = new sack();
- JSTreeObj.ajaxObjects[ajaxIndex].method = "GET";
- JSTreeObj.ajaxObjects[ajaxIndex].setVar("deleteIds", saveString);
- document.all.deleteIds.value=saveString;
- JSTreeObj.__addAdditionalRequestParameters(JSTreeObj.ajaxObjects[ajaxIndex], JSTreeObj.additionalDeleteRequestParameters);
- JSTreeObj.ajaxObjects[ajaxIndex].requestFile = JSTreeObj.filePathDeleteItem; // Specifying which file to get
- JSTreeObj.ajaxObjects[ajaxIndex].onCompletion = function() { JSTreeObj.__deleteComplete(ajaxIndex,obj); } ; // Specify function that will be executed after file has been found
- //JSTreeObj.ajaxObjects[ajaxIndex].runAJAX(); // Execute AJAX function
- deleteMyTree_byForm();
-
-
- }
- ,
- __addItem_step2 : function(obj)
- {
- var parentId = obj.id.replace(/[^0-9]/gi,'');
- document.all.newName.value="";
- document.all.saveString.value=parentId;
- if (selectedFolderId)
- selectedFolderId = parentId;
-
- addMyTree_byForm();
-
- }
- ,
- __deleteComplete : function(ajaxIndex,obj)
- {
- if(this.ajaxObjects[ajaxIndex].response!='OK'){
- alert('ERROR WHEN TRYING TO DELETE NODE: ' + this.ajaxObjects[ajaxIndex].response); // Rename failed
- }else{
- var parentRef = obj.parentNode.parentNode;
- obj.parentNode.removeChild(obj);
- this.__refreshDisplay(parentRef);
-
- }
-
- }
- ,
- __renameComplete : function(ajaxIndex)
- {
- if(this.ajaxObjects[ajaxIndex].response!='OK'){
- alert('ERROR WHEN TRYING TO RENAME NODE: ' + this.ajaxObjects[ajaxIndex].response); // Rename failed
- }
- }
- ,
- __saveTextBoxChanges : function(e,inputObj)
- {
- if(!inputObj && this)inputObj = this;
- if(document.all)e = event;
- if(e.keyCode && e.keyCode==27){
- JSTreeObj.__cancelRename(e,inputObj);
- return;
- }
- inputObj.style.display='none';
- inputObj.nextSibling.style.visibility='visible';
- if(inputObj.value.length>0){
- inputObj.nextSibling.innerHTML = inputObj.value;
- // Send changes to the server.
- if (JSTreeObj.renameState != JSTreeObj.RENAME_STATE_BEGIN) {
- return;
- }
- JSTreeObj.renameState = JSTreeObj.RENAME_STATE_REQUEST_SENDED;
- var ajaxIndex = JSTreeObj.ajaxObjects.length;
- JSTreeObj.ajaxObjects[ajaxIndex] = new sack();
- JSTreeObj.ajaxObjects[ajaxIndex].method = "GET";
- JSTreeObj.ajaxObjects[ajaxIndex].setVar("renameId", inputObj.parentNode.id.replace(/[^0-9]/gi,''));
- JSTreeObj.ajaxObjects[ajaxIndex].setVar("newName", inputObj.value);
- JSTreeObj.__addAdditionalRequestParameters(JSTreeObj.ajaxObjects[ajaxIndex], JSTreeObj.additionalRenameRequestParameters);
- JSTreeObj.ajaxObjects[ajaxIndex].requestFile = JSTreeObj.filePathRenameItem; // Specifying which file to get
- JSTreeObj.ajaxObjects[ajaxIndex].onCompletion = function() { JSTreeObj.__renameComplete(ajaxIndex); } ; // Specify function that will be executed after file has been found
- JSTreeObj.ajaxObjects[ajaxIndex].runAJAX(); // Execute AJAX function
-
- document.all.renameId.value=inputObj.parentNode.id.replace(/[^0-9]/gi,'');
- document.all.newName.value= inputObj.value;
- renameMyTree_byForm();
-
- }
- }
- ,
- __cancelRename : function(e,inputObj)
- {
- JSTreeObj.renameState = JSTreeObj.RENAME_STATE_CANCELD;
- if(!inputObj && this)inputObj = this;
- inputObj.value = JSTreeObj.helpObj.innerHTML;
- inputObj.nextSibling.innerHTML = JSTreeObj.helpObj.innerHTML;
- inputObj.style.display = 'none';
- inputObj.nextSibling.style.visibility = 'visible';
- }
- ,
- __renameCheckKeyCode : function(e)
- {
- if(document.all)e = event;
- if(e.keyCode==13){ // Enter pressed
- JSTreeObj.__saveTextBoxChanges(false,this);
- }
- if(e.keyCode==27){ // ESC pressed
- JSTreeObj.__cancelRename(false,this);
- }
- }
- ,
- __createTextBox : function(obj)
- {
- var textBox = document.createElement('INPUT');
- textBox.className = 'folderTreeTextBox';
- textBox.value = obj.innerHTML;
- obj.parentNode.insertBefore(textBox,obj);
- textBox.id = 'textBox' + obj.parentNode.id.replace(/[^0-9]/gi,'');
- textBox.onblur = this.__saveTextBoxChanges;
- textBox.onkeydown = this.__renameCheckKeyCode;
- textBox.style.height="16px";
- this.__renameEnableTextBox(obj);
- }
- ,
- __renameEnableTextBox : function(obj)
- {
- JSTreeObj.renameState = JSTreeObj.RENAME_STATE_BEGIN;
- obj.style.visibility = 'hidden';
- obj.previousSibling.value = obj.innerHTML;
- obj.previousSibling.style.display = 'inline';
- obj.previousSibling.select();
- }
- ,
- renameItem : function(obj1,obj2)
- {
- currentItemToEdit = obj2.parentNode; // Reference to the <li> tag.
- if(!obj2.previousSibling || obj2.previousSibling.tagName.toLowerCase()!='input'){
- this.__createTextBox(obj2);
- }else{
- this.__renameEnableTextBox(obj2);
- }
- this.helpObj.innerHTML = obj2.innerHTML;
-
- }
- ,
- initTree : function(selectedItemId)
- {
- JSTreeObj = this;
- JSTreeObj.createDropIndicator();
- document.documentElement.onselectstart = JSTreeObj.cancelSelectionEvent;
- document.documentElement.ondragstart = JSTreeObj.cancelEvent;
- document.documentElement.onmousedown = JSTreeObj.removeHighlight;
-
- /* Creating help object for storage of values */
- this.helpObj = document.createElement('DIV');
- this.helpObj.style.display = 'none';
- document.body.appendChild(this.helpObj);
- /* Create context menu */
- if(this.deleteAllowed || this.renameAllowed || this.addAllowed){
- try{
- /* Creating menu model for the context menu, i.e. the datasource */
- var menuModel = new DHTMLGoodies_menuModel();
- if(this.deleteAllowed)menuModel.addItem(1,'Delete Folder','','',false,'JSTreeObj.deleteItem');
- if(this.deleteAllowed)menuModel.addItem(2,'Rename Folder','','',false,'JSTreeObj.renameItem');
- if(this.addAllowed)menuModel.addItem(3,'New Folder','','',false,'JSTreeObj.addItem');
- menuModel.addItem(4,'Create Report','','',false,'JSTreeObj.createMenuReport');
- menuModel.init();
-
- /*For Reports*/
- var menuReportNoRights = new DHTMLGoodies_menuModel();
- menuReportNoRights.addItem(3,'Run','','',false,'JSTreeObj.runItem');
- menuReportNoRights.init();
-
- var menuReportWithRights = new DHTMLGoodies_menuModel();
- menuReportWithRights.addItem(1,'Run','','',false,'JSTreeObj.runMenuReport');
- menuReportWithRights.addItem(2,'Edit','','',false,'JSTreeObj.editMenuReport');
- menuReportWithRights.addItem(3,'Delete','','',false,'JSTreeObj.deleteMenuReport');
- menuReportWithRights.init();
-
-
- var menuModelRenameOnly = new DHTMLGoodies_menuModel();
- if(this.renameAllowed)menuModelRenameOnly.addItem(3,'Rename Folder','','',false,'JSTreeObj.renameItem');
- menuModelRenameOnly.init();
-
- var menuModelDeleteOnly = new DHTMLGoodies_menuModel();
- if(this.deleteAllowed)menuModelDeleteOnly.addItem(4,'Delete Folder','','',false,'JSTreeObj.deleteItem');
- menuModelDeleteOnly.init();
-
- var menuModelAddOnly = new DHTMLGoodies_menuModel();
- menuModelAddOnly.addItem(1,'New Folder','','',false,'JSTreeObj.addItem');
- menuModelAddOnly.init();
-
- window.refToDragDropTree = this;
-
- this.contextMenu = new DHTMLGoodies_contextMenu();
- this.contextMenu.setWidth(120);
- referenceToDHTMLSuiteContextMenu = this.contextMenu;
- }catch(e){
-
- }
- }
-
-
- var nodeId = 0;
- var dhtmlgoodies_tree = document.getElementById(this.idOfTree);
- var menuItems = dhtmlgoodies_tree.getElementsByTagName('LI'); // Get an array of all menu items
- for(var no=0;no<menuItems.length;no++){
- // No children var set ?
- var noChildren = false;
- var tmpVar = menuItems[no].getAttribute('noChildren');
- if(!tmpVar)tmpVar = menuItems[no].noChildren;
- if(tmpVar=='true')noChildren=true;
- // No drag var set ?
- var noDrag = false;
- var tmpVar = menuItems[no].getAttribute('noDrag');
- if(!tmpVar)tmpVar = menuItems[no].noDrag;
- if(tmpVar=='true')noDrag=true;
-
- nodeId++;
- var subItems = menuItems[no].getElementsByTagName('UL');
- var img = document.createElement('IMG');
- img.src = this.imageFolder + this.plusImage;
- img.onclick = JSTreeObj.showHideNode;
-
- if(subItems.length==0)img.style.visibility='hidden';else{
- subItems[0].id = 'tree_ul_' + treeUlCounter;
- treeUlCounter++;
- }
- var aTag = menuItems[no].getElementsByTagName('A')[0];
- aTag.id = 'nodeATag' + menuItems[no].id.replace(/[^0-9]/gi,'');
- //aTag.onclick = JSTreeObj.showHideNode;
- if(!noDrag)aTag.onmousedown = JSTreeObj.initDrag;
- if(!noChildren)aTag.onmousemove = JSTreeObj.moveDragableNodes;
- menuItems[no].insertBefore(img,aTag);
- //menuItems[no].id = 'dhtmlgoodies_treeNode' + nodeId;
- var folderImg = document.createElement('IMG');
- if(!noDrag)folderImg.onmousedown = JSTreeObj.initDrag;
- folderImg.onmousemove = JSTreeObj.moveDragableNodes;
- if(menuItems[no].className){
- folderImg.src = this.imageFolder + menuItems[no].className;
- } else if (menuItems[no].getAttribute('imgFile')){
- folderImg.src = this.imageFolder + menuItems[no].getAttribute('imgFile');
- } else{
- folderImg.src = this.imageFolder + this.folderImage;
- }
- menuItems[no].insertBefore(folderImg,aTag);
-
- if(this.contextMenu){
- var noDelete = menuItems[no].getAttribute('noDelete');
- if(!noDelete)noDelete = menuItems[no].noDelete;
- var noRename = menuItems[no].getAttribute('noRename');
- if(!noRename)noRename = menuItems[no].noRename;
- var noAdd = menuItems[no].getAttribute('noChild');
- if(!noAdd)noAdd = menuItems[no].noChild;
-
-
- if (menuItems[no].id.replace(/[^0-9]/gi,'').substr(0,3) != '000' ){//for folders
- if(noRename=='true' && noDelete=='true'){
- if (noAdd != 'true'){
- this.contextMenu.attachToElement(aTag,false,menuModelAddOnly);
- }
- }else{
- if(noDelete == 'true')this.contextMenu.attachToElement(aTag,false,menuModelRenameOnly);
- else if(noRename == 'true')this.contextMenu.attachToElement(aTag,false,menuModelDeleteOnly);
- else this.contextMenu.attachToElement(aTag,false,menuModel);
-
- }
- }else{//for reports
- var noRights = menuItems[no].getAttribute('noReportRights');
- if(!noRights)noRights = menuItems[no].noRights;
- if(noRights=='true'){
- this.contextMenu.attachToElement(aTag,false,menuReportNoRights);
- }else{
- this.contextMenu.attachToElement(aTag,false,menuReportWithRights);
- }
-
-
- }
- }
- //highlighting the selected item
- if (selectedItemId != null && selectedItemId == menuItems[no].id.replace(/[^0-9]/gi,'')){
- if(JSTreeObj.currentlyActiveItem) JSTreeObj.currentlyActiveItem.className = '';
- aTag.className = 'highlightedNodeItem';
- JSTreeObj.currentlyActiveItem = aTag;
- JSTreeObj.selectedItem = aTag;
- folderImg.tabindex="1";
- //alert(1);
- //folderImg.focus();
- }
- this.addEvent(aTag,'contextmenu',this.highlightItem);
- this.addEvent(aTag,'click',this.clickItem);
-
-
-
- }
-
-
-
- initExpandedNodes = this.Get_Cookie('dhtmlgoodies_expandedNodes');
- if(initExpandedNodes){
- var nodes = initExpandedNodes.split(',');
- for(var no=0;no<nodes.length;no++){
- if(nodes[no])this.showHideNode(false,nodes[no]);
- }
- }
-
-
-
-
- document.documentElement.onmousemove = JSTreeObj.moveDragableNodes;
- document.documentElement.onmouseup = JSTreeObj.dropDragableNodes;
- }
- ,
- __addAdditionalRequestParameters : function(ajax, parameters)
- {
- for (var parameter in parameters) {
- ajax.setVar(parameter, parameters[parameter]);
- }
- }
- } \ No newline at end of file
diff --git a/ecomp-sdk/epsdk-app-overlay/src/main/webapp/static/fusion/sample/css/flexslider.css b/ecomp-sdk/epsdk-app-overlay/src/main/webapp/static/fusion/sample/css/flexslider.css
deleted file mode 100644
index c459ef44..00000000
--- a/ecomp-sdk/epsdk-app-overlay/src/main/webapp/static/fusion/sample/css/flexslider.css
+++ /dev/null
@@ -1,275 +0,0 @@
-/*
- * jQuery FlexSlider v2.6.0
- * http://www.woothemes.com/flexslider/
- *
- * Copyright 2012 WooThemes
- * Free to use under the GPLv2 and later license.
- * http://www.gnu.org/licenses/gpl-2.0.html
- *
- * Contributing author: Tyler Smith (@mbmufffin)
- *
- */
-/* ====================================================================================================================
- * FONT-FACE
- * ====================================================================================================================*/
-@font-face {
- font-family: 'flexslider-icon';
- src: url('fonts/flexslider-icon.eot');
- src: url('fonts/flexslider-icon.eot?#iefix') format('embedded-opentype'), url('fonts/flexslider-icon.woff') format('woff'), url('fonts/flexslider-icon.ttf') format('truetype'), url('fonts/flexslider-icon.svg#flexslider-icon') format('svg');
- font-weight: normal;
- font-style: normal;
-}
-/* ====================================================================================================================
- * RESETS
- * ====================================================================================================================*/
-.flex-container a:hover,
-.flex-slider a:hover {
- outline: none;
-}
-.slides,
-.slides > li,
-.flex-control-nav,
-.flex-direction-nav {
- margin: 0;
- padding: 0;
- list-style: none;
-}
-.flex-pauseplay span {
- text-transform: capitalize;
-}
-/* ====================================================================================================================
- * BASE STYLES
- * ====================================================================================================================*/
-.flexslider {
- margin: 0;
- padding: 0;
-}
-.flexslider .slides > li {
- display: none;
- -webkit-backface-visibility: hidden;
-}
-.flexslider .slides img {
- width: 100%;
- display: block;
-}
-.flexslider .slides:after {
- content: "\0020";
- display: block;
- clear: both;
- visibility: hidden;
- line-height: 0;
- height: 0;
-}
-html[xmlns] .flexslider .slides {
- display: block;
-}
-* html .flexslider .slides {
- height: 1%;
-}
-.no-js .flexslider .slides > li:first-child {
- display: block;
-}
-/* ====================================================================================================================
- * DEFAULT THEME
- * ====================================================================================================================*/
-.flexslider {
- margin: 0 0 60px;
- background: #ffffff;
- border: 4px solid #ffffff;
- position: relative;
- zoom: 1;
- -webkit-border-radius: 4px;
- -moz-border-radius: 4px;
- border-radius: 4px;
- -webkit-box-shadow: '' 0 1px 4px rgba(0, 0, 0, 0.2);
- -moz-box-shadow: '' 0 1px 4px rgba(0, 0, 0, 0.2);
- -o-box-shadow: '' 0 1px 4px rgba(0, 0, 0, 0.2);
- box-shadow: '' 0 1px 4px rgba(0, 0, 0, 0.2);
-}
-.flexslider .slides {
- zoom: 1;
-}
-.flexslider .slides img {
- height: auto;
- -moz-user-select: none;
-}
-.flex-viewport {
- max-height: 2000px;
- -webkit-transition: all 1s ease;
- -moz-transition: all 1s ease;
- -ms-transition: all 1s ease;
- -o-transition: all 1s ease;
- transition: all 1s ease;
-}
-.loading .flex-viewport {
- max-height: 300px;
-}
-.carousel li {
- margin-right: 5px;
-}
-.flex-direction-nav {
- *height: 0;
-}
-.flex-direction-nav a {
- text-decoration: none;
- display: block;
- width: 40px;
- height: 40px;
- margin: -20px 0 0;
- position: absolute;
- top: 50%;
- z-index: 10;
- overflow: hidden;
- opacity: 0;
- cursor: pointer;
- color: rgba(0, 0, 0, 0.8);
- text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.3);
- -webkit-transition: all 0.3s ease-in-out;
- -moz-transition: all 0.3s ease-in-out;
- -ms-transition: all 0.3s ease-in-out;
- -o-transition: all 0.3s ease-in-out;
- transition: all 0.3s ease-in-out;
-}
-.flex-direction-nav a:before {
- font-family: "flexslider-icon";
- font-size: 40px;
- display: inline-block;
- content: '\f001';
- color: rgba(0, 0, 0, 0.8);
- text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.3);
-}
-.flex-direction-nav a.flex-next:before {
- content: '\f002';
-}
-.flex-direction-nav .flex-prev {
- left: -50px;
-}
-.flex-direction-nav .flex-next {
- right: -50px;
- text-align: right;
-}
-.flexslider:hover .flex-direction-nav .flex-prev {
- opacity: 0.7;
- left: 10px;
-}
-.flexslider:hover .flex-direction-nav .flex-prev:hover {
- opacity: 1;
-}
-.flexslider:hover .flex-direction-nav .flex-next {
- opacity: 0.7;
- right: 10px;
-}
-.flexslider:hover .flex-direction-nav .flex-next:hover {
- opacity: 1;
-}
-.flex-direction-nav .flex-disabled {
- opacity: 0!important;
- filter: alpha(opacity=0);
- cursor: default;
- z-index: -1;
-}
-.flex-pauseplay a {
- display: block;
- width: 20px;
- height: 20px;
- position: absolute;
- bottom: 5px;
- left: 10px;
- opacity: 0.8;
- z-index: 10;
- overflow: hidden;
- cursor: pointer;
- color: #000;
-}
-.flex-pauseplay a:before {
- font-family: "flexslider-icon";
- font-size: 20px;
- display: inline-block;
- content: '\f004';
-}
-.flex-pauseplay a:hover {
- opacity: 1;
-}
-.flex-pauseplay a.flex-play:before {
- content: '\f003';
-}
-.flex-control-nav {
- width: 100%;
- position: absolute;
- bottom: -40px;
- text-align: center;
-}
-.flex-control-nav li {
- margin: 0 6px;
- display: inline-block;
- zoom: 1;
- *display: inline;
-}
-.flex-control-paging li a {
- width: 11px;
- height: 11px;
- display: block;
- background: #666;
- background: rgba(0, 0, 0, 0.5);
- cursor: pointer;
- text-indent: -9999px;
- -webkit-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
- -moz-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
- -o-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
- box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
- -webkit-border-radius: 20px;
- -moz-border-radius: 20px;
- border-radius: 20px;
-}
-.flex-control-paging li a:hover {
- background: #333;
- background: rgba(0, 0, 0, 0.7);
-}
-.flex-control-paging li a.flex-active {
- background: #000;
- background: rgba(0, 0, 0, 0.9);
- cursor: default;
-}
-.flex-control-thumbs {
- margin: 5px 0 0;
- position: static;
- overflow: hidden;
-}
-.flex-control-thumbs li {
- width: 25%;
- float: left;
- margin: 0;
-}
-.flex-control-thumbs img {
- width: 100%;
- height: auto;
- display: block;
- opacity: .7;
- cursor: pointer;
- -moz-user-select: none;
- -webkit-transition: all 1s ease;
- -moz-transition: all 1s ease;
- -ms-transition: all 1s ease;
- -o-transition: all 1s ease;
- transition: all 1s ease;
-}
-.flex-control-thumbs img:hover {
- opacity: 1;
-}
-.flex-control-thumbs .flex-active {
- opacity: 1;
- cursor: default;
-}
-/* ====================================================================================================================
- * RESPONSIVE
- * ====================================================================================================================*/
-@media screen and (max-width: 860px) {
- .flex-direction-nav .flex-prev {
- opacity: 1;
- left: 10px;
- }
- .flex-direction-nav .flex-next {
- opacity: 1;
- right: 10px;
- }
-}
diff --git a/ecomp-sdk/epsdk-app-overlay/src/main/webapp/static/fusion/sample/css/fonts/flexslider-icon.eot b/ecomp-sdk/epsdk-app-overlay/src/main/webapp/static/fusion/sample/css/fonts/flexslider-icon.eot
deleted file mode 100644
index 97c4196f..00000000
--- a/ecomp-sdk/epsdk-app-overlay/src/main/webapp/static/fusion/sample/css/fonts/flexslider-icon.eot
+++ /dev/null
Binary files differ
diff --git a/ecomp-sdk/epsdk-app-overlay/src/main/webapp/static/fusion/sample/css/fonts/flexslider-icon.svg b/ecomp-sdk/epsdk-app-overlay/src/main/webapp/static/fusion/sample/css/fonts/flexslider-icon.svg
deleted file mode 100644
index 89fd1ab8..00000000
--- a/ecomp-sdk/epsdk-app-overlay/src/main/webapp/static/fusion/sample/css/fonts/flexslider-icon.svg
+++ /dev/null
@@ -1,19 +0,0 @@
-<?xml version="1.0" standalone="no"?>
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
-<svg xmlns="http://www.w3.org/2000/svg">
-<metadata>
-This is a custom SVG font generated by IcoMoon.
-<iconset grid="14"></iconset>
-</metadata>
-<defs>
-<font id="flexslider-icon" horiz-adv-x="448" >
-<font-face units-per-em="448" ascent="384" descent="-64" />
-<missing-glyph horiz-adv-x="448" />
-<glyph unicode="&#xf001;" d="M 185.50-9.25l-163.00,162.75q-9.25,9.25 -9.25,22.625t 9.25,22.625l 163.00,162.75q 9.25,9.25 22.625,9.25t 22.625-9.25l 18.75-18.75q 9.25-9.25 9.25-22.625t-9.25-22.625l-121.50-121.50l 121.50-121.25q 9.25-9.50 9.25-22.75t-9.25-22.50l-18.75-18.75q-9.25-9.25 -22.625-9.25t-22.625,9.25z" horiz-adv-x="288" />
-<glyph unicode="&#xf002;" d="M 274.75,176.00q0.00-13.00 -9.25-22.75l-163.00-162.75q-9.25-9.25 -22.50-9.25t-22.50,9.25l-19.00,18.75q-9.25,9.75 -9.25,22.75q0.00,13.25 9.25,22.50l 121.50,121.50l-121.50,121.25q-9.25,9.75 -9.25,22.75q0.00,13.25 9.25,22.50l 19.00,18.75q 9.00,9.50 22.50,9.50t 22.50-9.50l 163.00-162.75q 9.25-9.25 9.25-22.50z" horiz-adv-x="288" />
-<glyph unicode="&#xf003;" d="M 346.00,152.25l-332.00-184.50q-5.75-3.25 -9.875-0.75t-4.125,9.00l0.00,368.00 q0.00,6.50 4.125,9.00t 9.875-0.75l 332.00-184.50q 5.75-3.25 5.75-7.75t-5.75-7.75z" horiz-adv-x="352" />
-<glyph unicode="&#xf004;" d="M 384.00,336.00l0.00-352.00 q0.00-6.50 -4.75-11.25t-11.25-4.75l-128.00,0.00 q-6.50,0.00 -11.25,4.75t-4.75,11.25l0.00,352.00 q0.00,6.50 4.75,11.25t 11.25,4.75l 128.00,0.00 q 6.50,0.00 11.25-4.75t 4.75-11.25zM 160.00,336.00l0.00-352.00 q0.00-6.50 -4.75-11.25t-11.25-4.75l-128.00,0.00 q-6.50,0.00 -11.25,4.75t-4.75,11.25l0.00,352.00 q0.00,6.50 4.75,11.25t 11.25,4.75l 128.00,0.00 q 6.50,0.00 11.25-4.75t 4.75-11.25z" horiz-adv-x="384" />
-<glyph unicode="&#xf005;" d="M 402.75,208.00q0.00-13.25 -9.25-22.50l-162.75-162.75q-9.50-9.50 -22.75-9.50q-13.50,0.00 -22.50,9.50l-162.75,162.75q-9.50,9.00 -9.50,22.50q0.00,13.25 9.50,22.75l 18.50,18.75q 9.75,9.25 22.75,9.25q 13.25,0.00 22.50-9.25l 121.50-121.50l 121.50,121.50q 9.25,9.25 22.50,9.25q 13.00,0.00 22.75-9.25l 18.75-18.75q 9.25-9.75 9.25-22.75z" horiz-adv-x="416" />
-<glyph unicode="&#x20;" horiz-adv-x="224" />
-<glyph class="hidden" unicode="&#xf000;" d="M0,384L 448 -64L0 -64 z" horiz-adv-x="0" />
-</font></defs></svg> \ No newline at end of file
diff --git a/ecomp-sdk/epsdk-app-overlay/src/main/webapp/static/fusion/sample/css/fonts/flexslider-icon.ttf b/ecomp-sdk/epsdk-app-overlay/src/main/webapp/static/fusion/sample/css/fonts/flexslider-icon.ttf
deleted file mode 100644
index 05432986..00000000
--- a/ecomp-sdk/epsdk-app-overlay/src/main/webapp/static/fusion/sample/css/fonts/flexslider-icon.ttf
+++ /dev/null
Binary files differ
diff --git a/ecomp-sdk/epsdk-app-overlay/src/main/webapp/static/fusion/sample/css/fonts/flexslider-icon.woff b/ecomp-sdk/epsdk-app-overlay/src/main/webapp/static/fusion/sample/css/fonts/flexslider-icon.woff
deleted file mode 100644
index 10c4eeb8..00000000
--- a/ecomp-sdk/epsdk-app-overlay/src/main/webapp/static/fusion/sample/css/fonts/flexslider-icon.woff
+++ /dev/null
Binary files differ
diff --git a/ecomp-sdk/epsdk-app-overlay/src/main/webapp/static/fusion/sample/images/Calendar-16x16.png b/ecomp-sdk/epsdk-app-overlay/src/main/webapp/static/fusion/sample/images/Calendar-16x16.png
deleted file mode 100644
index ac970bda..00000000
--- a/ecomp-sdk/epsdk-app-overlay/src/main/webapp/static/fusion/sample/images/Calendar-16x16.png
+++ /dev/null
Binary files differ
diff --git a/ecomp-sdk/epsdk-app-overlay/src/main/webapp/static/fusion/sample/images/arrow-next.png b/ecomp-sdk/epsdk-app-overlay/src/main/webapp/static/fusion/sample/images/arrow-next.png
deleted file mode 100644
index 1a4f72c6..00000000
--- a/ecomp-sdk/epsdk-app-overlay/src/main/webapp/static/fusion/sample/images/arrow-next.png
+++ /dev/null
Binary files differ
diff --git a/ecomp-sdk/epsdk-app-overlay/src/main/webapp/static/fusion/sample/images/arrow-prev.png b/ecomp-sdk/epsdk-app-overlay/src/main/webapp/static/fusion/sample/images/arrow-prev.png
deleted file mode 100644
index 8211eba1..00000000
--- a/ecomp-sdk/epsdk-app-overlay/src/main/webapp/static/fusion/sample/images/arrow-prev.png
+++ /dev/null
Binary files differ
diff --git a/ecomp-sdk/epsdk-app-overlay/src/main/webapp/static/fusion/sample/images/copyicon.png b/ecomp-sdk/epsdk-app-overlay/src/main/webapp/static/fusion/sample/images/copyicon.png
deleted file mode 100644
index 6c1c3c15..00000000
--- a/ecomp-sdk/epsdk-app-overlay/src/main/webapp/static/fusion/sample/images/copyicon.png
+++ /dev/null
Binary files differ
diff --git a/ecomp-sdk/epsdk-app-overlay/src/main/webapp/static/fusion/sample/images/deleteicon.gif b/ecomp-sdk/epsdk-app-overlay/src/main/webapp/static/fusion/sample/images/deleteicon.gif
deleted file mode 100644
index 4b07af82..00000000
--- a/ecomp-sdk/epsdk-app-overlay/src/main/webapp/static/fusion/sample/images/deleteicon.gif
+++ /dev/null
Binary files differ
diff --git a/ecomp-sdk/epsdk-app-overlay/src/main/webapp/static/fusion/sample/images/example-frame.png b/ecomp-sdk/epsdk-app-overlay/src/main/webapp/static/fusion/sample/images/example-frame.png
deleted file mode 100644
index 31f2fe1c..00000000
--- a/ecomp-sdk/epsdk-app-overlay/src/main/webapp/static/fusion/sample/images/example-frame.png
+++ /dev/null
Binary files differ
diff --git a/ecomp-sdk/epsdk-app-overlay/src/main/webapp/static/fusion/sample/images/loading.gif b/ecomp-sdk/epsdk-app-overlay/src/main/webapp/static/fusion/sample/images/loading.gif
deleted file mode 100644
index cccb0fc9..00000000
--- a/ecomp-sdk/epsdk-app-overlay/src/main/webapp/static/fusion/sample/images/loading.gif
+++ /dev/null
Binary files differ
diff --git a/ecomp-sdk/epsdk-app-overlay/src/main/webapp/static/fusion/sample/js/eye.js b/ecomp-sdk/epsdk-app-overlay/src/main/webapp/static/fusion/sample/js/eye.js
deleted file mode 100644
index 8a281dc3..00000000
--- a/ecomp-sdk/epsdk-app-overlay/src/main/webapp/static/fusion/sample/js/eye.js
+++ /dev/null
@@ -1,34 +0,0 @@
-/**
- *
- * Zoomimage
- * Author: Stefan Petre www.eyecon.ro
- *
- */
-(function($){
- var EYE = window.EYE = function() {
- var _registered = {
- init: []
- };
- return {
- init: function() {
- $.each(_registered.init, function(nr, fn){
- fn.call();
- });
- },
- extend: function(prop) {
- for (var i in prop) {
- if (prop[i] != undefined) {
- this[i] = prop[i];
- }
- }
- },
- register: function(fn, type) {
- if (!_registered[type]) {
- _registered[type] = [];
- }
- _registered[type].push(fn);
- }
- };
- }();
- $(EYE.init);
-})(jQuery);
diff --git a/ecomp-sdk/epsdk-app-overlay/src/main/webapp/static/fusion/sample/js/jquery.flexslider-min.js b/ecomp-sdk/epsdk-app-overlay/src/main/webapp/static/fusion/sample/js/jquery.flexslider-min.js
deleted file mode 100644
index 5ad6c377..00000000
--- a/ecomp-sdk/epsdk-app-overlay/src/main/webapp/static/fusion/sample/js/jquery.flexslider-min.js
+++ /dev/null
@@ -1,5 +0,0 @@
-/*
- * jQuery FlexSlider v2.6.0
- * Copyright 2012 WooThemes
- * Contributing Author: Tyler Smith
- */!function($){var e=!0;$.flexslider=function(t,a){var n=$(t);n.vars=$.extend({},$.flexslider.defaults,a);var i=n.vars.namespace,s=window.navigator&&window.navigator.msPointerEnabled&&window.MSGesture,r=("ontouchstart"in window||s||window.DocumentTouch&&document instanceof DocumentTouch)&&n.vars.touch,o="click touchend MSPointerUp keyup",l="",c,d="vertical"===n.vars.direction,u=n.vars.reverse,v=n.vars.itemWidth>0,p="fade"===n.vars.animation,m=""!==n.vars.asNavFor,f={};$.data(t,"flexslider",n),f={init:function(){n.animating=!1,n.currentSlide=parseInt(n.vars.startAt?n.vars.startAt:0,10),isNaN(n.currentSlide)&&(n.currentSlide=0),n.animatingTo=n.currentSlide,n.atEnd=0===n.currentSlide||n.currentSlide===n.last,n.containerSelector=n.vars.selector.substr(0,n.vars.selector.search(" ")),n.slides=$(n.vars.selector,n),n.container=$(n.containerSelector,n),n.count=n.slides.length,n.syncExists=$(n.vars.sync).length>0,"slide"===n.vars.animation&&(n.vars.animation="swing"),n.prop=d?"top":"marginLeft",n.args={},n.manualPause=!1,n.stopped=!1,n.started=!1,n.startTimeout=null,n.transitions=!n.vars.video&&!p&&n.vars.useCSS&&function(){var e=document.createElement("div"),t=["perspectiveProperty","WebkitPerspective","MozPerspective","OPerspective","msPerspective"];for(var a in t)if(void 0!==e.style[t[a]])return n.pfx=t[a].replace("Perspective","").toLowerCase(),n.prop="-"+n.pfx+"-transform",!0;return!1}(),n.ensureAnimationEnd="",""!==n.vars.controlsContainer&&(n.controlsContainer=$(n.vars.controlsContainer).length>0&&$(n.vars.controlsContainer)),""!==n.vars.manualControls&&(n.manualControls=$(n.vars.manualControls).length>0&&$(n.vars.manualControls)),""!==n.vars.customDirectionNav&&(n.customDirectionNav=2===$(n.vars.customDirectionNav).length&&$(n.vars.customDirectionNav)),n.vars.randomize&&(n.slides.sort(function(){return Math.round(Math.random())-.5}),n.container.empty().append(n.slides)),n.doMath(),n.setup("init"),n.vars.controlNav&&f.controlNav.setup(),n.vars.directionNav&&f.directionNav.setup(),n.vars.keyboard&&(1===$(n.containerSelector).length||n.vars.multipleKeyboard)&&$(document).bind("keyup",function(e){var t=e.keyCode;if(!n.animating&&(39===t||37===t)){var a=39===t?n.getTarget("next"):37===t?n.getTarget("prev"):!1;n.flexAnimate(a,n.vars.pauseOnAction)}}),n.vars.mousewheel&&n.bind("mousewheel",function(e,t,a,i){e.preventDefault();var s=0>t?n.getTarget("next"):n.getTarget("prev");n.flexAnimate(s,n.vars.pauseOnAction)}),n.vars.pausePlay&&f.pausePlay.setup(),n.vars.slideshow&&n.vars.pauseInvisible&&f.pauseInvisible.init(),n.vars.slideshow&&(n.vars.pauseOnHover&&n.hover(function(){n.manualPlay||n.manualPause||n.pause()},function(){n.manualPause||n.manualPlay||n.stopped||n.play()}),n.vars.pauseInvisible&&f.pauseInvisible.isHidden()||(n.vars.initDelay>0?n.startTimeout=setTimeout(n.play,n.vars.initDelay):n.play())),m&&f.asNav.setup(),r&&n.vars.touch&&f.touch(),(!p||p&&n.vars.smoothHeight)&&$(window).bind("resize orientationchange focus",f.resize),n.find("img").attr("draggable","false"),setTimeout(function(){n.vars.start(n)},200)},asNav:{setup:function(){n.asNav=!0,n.animatingTo=Math.floor(n.currentSlide/n.move),n.currentItem=n.currentSlide,n.slides.removeClass(i+"active-slide").eq(n.currentItem).addClass(i+"active-slide"),s?(t._slider=n,n.slides.each(function(){var e=this;e._gesture=new MSGesture,e._gesture.target=e,e.addEventListener("MSPointerDown",function(e){e.preventDefault(),e.currentTarget._gesture&&e.currentTarget._gesture.addPointer(e.pointerId)},!1),e.addEventListener("MSGestureTap",function(e){e.preventDefault();var t=$(this),a=t.index();$(n.vars.asNavFor).data("flexslider").animating||t.hasClass("active")||(n.direction=n.currentItem<a?"next":"prev",n.flexAnimate(a,n.vars.pauseOnAction,!1,!0,!0))})})):n.slides.on(o,function(e){e.preventDefault();var t=$(this),a=t.index(),s=t.offset().left-$(n).scrollLeft();0>=s&&t.hasClass(i+"active-slide")?n.flexAnimate(n.getTarget("prev"),!0):$(n.vars.asNavFor).data("flexslider").animating||t.hasClass(i+"active-slide")||(n.direction=n.currentItem<a?"next":"prev",n.flexAnimate(a,n.vars.pauseOnAction,!1,!0,!0))})}},controlNav:{setup:function(){n.manualControls?f.controlNav.setupManual():f.controlNav.setupPaging()},setupPaging:function(){var e="thumbnails"===n.vars.controlNav?"control-thumbs":"control-paging",t=1,a,s;if(n.controlNavScaffold=$('<ol class="'+i+"control-nav "+i+e+'"></ol>'),n.pagingCount>1)for(var r=0;r<n.pagingCount;r++){if(s=n.slides.eq(r),void 0===s.attr("data-thumb-alt")&&s.attr("data-thumb-alt",""),altText=""!==s.attr("data-thumb-alt")?altText=' alt="'+s.attr("data-thumb-alt")+'"':"",a="thumbnails"===n.vars.controlNav?'<img src="'+s.attr("data-thumb")+'"'+altText+"/>":'<a href="#">'+t+"</a>","thumbnails"===n.vars.controlNav&&!0===n.vars.thumbCaptions){var c=s.attr("data-thumbcaption");""!==c&&void 0!==c&&(a+='<span class="'+i+'caption">'+c+"</span>")}n.controlNavScaffold.append("<li>"+a+"</li>"),t++}n.controlsContainer?$(n.controlsContainer).append(n.controlNavScaffold):n.append(n.controlNavScaffold),f.controlNav.set(),f.controlNav.active(),n.controlNavScaffold.delegate("a, img",o,function(e){if(e.preventDefault(),""===l||l===e.type){var t=$(this),a=n.controlNav.index(t);t.hasClass(i+"active")||(n.direction=a>n.currentSlide?"next":"prev",n.flexAnimate(a,n.vars.pauseOnAction))}""===l&&(l=e.type),f.setToClearWatchedEvent()})},setupManual:function(){n.controlNav=n.manualControls,f.controlNav.active(),n.controlNav.bind(o,function(e){if(e.preventDefault(),""===l||l===e.type){var t=$(this),a=n.controlNav.index(t);t.hasClass(i+"active")||(a>n.currentSlide?n.direction="next":n.direction="prev",n.flexAnimate(a,n.vars.pauseOnAction))}""===l&&(l=e.type),f.setToClearWatchedEvent()})},set:function(){var e="thumbnails"===n.vars.controlNav?"img":"a";n.controlNav=$("."+i+"control-nav li "+e,n.controlsContainer?n.controlsContainer:n)},active:function(){n.controlNav.removeClass(i+"active").eq(n.animatingTo).addClass(i+"active")},update:function(e,t){n.pagingCount>1&&"add"===e?n.controlNavScaffold.append($('<li><a href="#">'+n.count+"</a></li>")):1===n.pagingCount?n.controlNavScaffold.find("li").remove():n.controlNav.eq(t).closest("li").remove(),f.controlNav.set(),n.pagingCount>1&&n.pagingCount!==n.controlNav.length?n.update(t,e):f.controlNav.active()}},directionNav:{setup:function(){var e=$('<ul class="'+i+'direction-nav"><li class="'+i+'nav-prev"><a class="'+i+'prev" href="#">'+n.vars.prevText+'</a></li><li class="'+i+'nav-next"><a class="'+i+'next" href="#">'+n.vars.nextText+"</a></li></ul>");n.customDirectionNav?n.directionNav=n.customDirectionNav:n.controlsContainer?($(n.controlsContainer).append(e),n.directionNav=$("."+i+"direction-nav li a",n.controlsContainer)):(n.append(e),n.directionNav=$("."+i+"direction-nav li a",n)),f.directionNav.update(),n.directionNav.bind(o,function(e){e.preventDefault();var t;(""===l||l===e.type)&&(t=$(this).hasClass(i+"next")?n.getTarget("next"):n.getTarget("prev"),n.flexAnimate(t,n.vars.pauseOnAction)),""===l&&(l=e.type),f.setToClearWatchedEvent()})},update:function(){var e=i+"disabled";1===n.pagingCount?n.directionNav.addClass(e).attr("tabindex","-1"):n.vars.animationLoop?n.directionNav.removeClass(e).removeAttr("tabindex"):0===n.animatingTo?n.directionNav.removeClass(e).filter("."+i+"prev").addClass(e).attr("tabindex","-1"):n.animatingTo===n.last?n.directionNav.removeClass(e).filter("."+i+"next").addClass(e).attr("tabindex","-1"):n.directionNav.removeClass(e).removeAttr("tabindex")}},pausePlay:{setup:function(){var e=$('<div class="'+i+'pauseplay"><a href="#"></a></div>');n.controlsContainer?(n.controlsContainer.append(e),n.pausePlay=$("."+i+"pauseplay a",n.controlsContainer)):(n.append(e),n.pausePlay=$("."+i+"pauseplay a",n)),f.pausePlay.update(n.vars.slideshow?i+"pause":i+"play"),n.pausePlay.bind(o,function(e){e.preventDefault(),(""===l||l===e.type)&&($(this).hasClass(i+"pause")?(n.manualPause=!0,n.manualPlay=!1,n.pause()):(n.manualPause=!1,n.manualPlay=!0,n.play())),""===l&&(l=e.type),f.setToClearWatchedEvent()})},update:function(e){"play"===e?n.pausePlay.removeClass(i+"pause").addClass(i+"play").html(n.vars.playText):n.pausePlay.removeClass(i+"play").addClass(i+"pause").html(n.vars.pauseText)}},touch:function(){function e(e){e.stopPropagation(),n.animating?e.preventDefault():(n.pause(),t._gesture.addPointer(e.pointerId),T=0,c=d?n.h:n.w,f=Number(new Date),l=v&&u&&n.animatingTo===n.last?0:v&&u?n.limit-(n.itemW+n.vars.itemMargin)*n.move*n.animatingTo:v&&n.currentSlide===n.last?n.limit:v?(n.itemW+n.vars.itemMargin)*n.move*n.currentSlide:u?(n.last-n.currentSlide+n.cloneOffset)*c:(n.currentSlide+n.cloneOffset)*c)}function a(e){e.stopPropagation();var a=e.target._slider;if(a){var n=-e.translationX,i=-e.translationY;return T+=d?i:n,m=T,x=d?Math.abs(T)<Math.abs(-n):Math.abs(T)<Math.abs(-i),e.detail===e.MSGESTURE_FLAG_INERTIA?void setImmediate(function(){t._gesture.stop()}):void((!x||Number(new Date)-f>500)&&(e.preventDefault(),!p&&a.transitions&&(a.vars.animationLoop||(m=T/(0===a.currentSlide&&0>T||a.currentSlide===a.last&&T>0?Math.abs(T)/c+2:1)),a.setProps(l+m,"setTouch"))))}}function i(e){e.stopPropagation();var t=e.target._slider;if(t){if(t.animatingTo===t.currentSlide&&!x&&null!==m){var a=u?-m:m,n=a>0?t.getTarget("next"):t.getTarget("prev");t.canAdvance(n)&&(Number(new Date)-f<550&&Math.abs(a)>50||Math.abs(a)>c/2)?t.flexAnimate(n,t.vars.pauseOnAction):p||t.flexAnimate(t.currentSlide,t.vars.pauseOnAction,!0)}r=null,o=null,m=null,l=null,T=0}}var r,o,l,c,m,f,g,h,S,x=!1,y=0,b=0,T=0;s?(t.style.msTouchAction="none",t._gesture=new MSGesture,t._gesture.target=t,t.addEventListener("MSPointerDown",e,!1),t._slider=n,t.addEventListener("MSGestureChange",a,!1),t.addEventListener("MSGestureEnd",i,!1)):(g=function(e){n.animating?e.preventDefault():(window.navigator.msPointerEnabled||1===e.touches.length)&&(n.pause(),c=d?n.h:n.w,f=Number(new Date),y=e.touches[0].pageX,b=e.touches[0].pageY,l=v&&u&&n.animatingTo===n.last?0:v&&u?n.limit-(n.itemW+n.vars.itemMargin)*n.move*n.animatingTo:v&&n.currentSlide===n.last?n.limit:v?(n.itemW+n.vars.itemMargin)*n.move*n.currentSlide:u?(n.last-n.currentSlide+n.cloneOffset)*c:(n.currentSlide+n.cloneOffset)*c,r=d?b:y,o=d?y:b,t.addEventListener("touchmove",h,!1),t.addEventListener("touchend",S,!1))},h=function(e){y=e.touches[0].pageX,b=e.touches[0].pageY,m=d?r-b:r-y,x=d?Math.abs(m)<Math.abs(y-o):Math.abs(m)<Math.abs(b-o);var t=500;(!x||Number(new Date)-f>t)&&(e.preventDefault(),!p&&n.transitions&&(n.vars.animationLoop||(m/=0===n.currentSlide&&0>m||n.currentSlide===n.last&&m>0?Math.abs(m)/c+2:1),n.setProps(l+m,"setTouch")))},S=function(e){if(t.removeEventListener("touchmove",h,!1),n.animatingTo===n.currentSlide&&!x&&null!==m){var a=u?-m:m,i=a>0?n.getTarget("next"):n.getTarget("prev");n.canAdvance(i)&&(Number(new Date)-f<550&&Math.abs(a)>50||Math.abs(a)>c/2)?n.flexAnimate(i,n.vars.pauseOnAction):p||n.flexAnimate(n.currentSlide,n.vars.pauseOnAction,!0)}t.removeEventListener("touchend",S,!1),r=null,o=null,m=null,l=null},t.addEventListener("touchstart",g,!1))},resize:function(){!n.animating&&n.is(":visible")&&(v||n.doMath(),p?f.smoothHeight():v?(n.slides.width(n.computedW),n.update(n.pagingCount),n.setProps()):d?(n.viewport.height(n.h),n.setProps(n.h,"setTotal")):(n.vars.smoothHeight&&f.smoothHeight(),n.newSlides.width(n.computedW),n.setProps(n.computedW,"setTotal")))},smoothHeight:function(e){if(!d||p){var t=p?n:n.viewport;e?t.animate({height:n.slides.eq(n.animatingTo).height()},e):t.height(n.slides.eq(n.animatingTo).height())}},sync:function(e){var t=$(n.vars.sync).data("flexslider"),a=n.animatingTo;switch(e){case"animate":t.flexAnimate(a,n.vars.pauseOnAction,!1,!0);break;case"play":t.playing||t.asNav||t.play();break;case"pause":t.pause()}},uniqueID:function(e){return e.filter("[id]").add(e.find("[id]")).each(function(){var e=$(this);e.attr("id",e.attr("id")+"_clone")}),e},pauseInvisible:{visProp:null,init:function(){var e=f.pauseInvisible.getHiddenProp();if(e){var t=e.replace(/[H|h]idden/,"")+"visibilitychange";document.addEventListener(t,function(){f.pauseInvisible.isHidden()?n.startTimeout?clearTimeout(n.startTimeout):n.pause():n.started?n.play():n.vars.initDelay>0?setTimeout(n.play,n.vars.initDelay):n.play()})}},isHidden:function(){var e=f.pauseInvisible.getHiddenProp();return e?document[e]:!1},getHiddenProp:function(){var e=["webkit","moz","ms","o"];if("hidden"in document)return"hidden";for(var t=0;t<e.length;t++)if(e[t]+"Hidden"in document)return e[t]+"Hidden";return null}},setToClearWatchedEvent:function(){clearTimeout(c),c=setTimeout(function(){l=""},3e3)}},n.flexAnimate=function(e,t,a,s,o){if(n.vars.animationLoop||e===n.currentSlide||(n.direction=e>n.currentSlide?"next":"prev"),m&&1===n.pagingCount&&(n.direction=n.currentItem<e?"next":"prev"),!n.animating&&(n.canAdvance(e,o)||a)&&n.is(":visible")){if(m&&s){var l=$(n.vars.asNavFor).data("flexslider");if(n.atEnd=0===e||e===n.count-1,l.flexAnimate(e,!0,!1,!0,o),n.direction=n.currentItem<e?"next":"prev",l.direction=n.direction,Math.ceil((e+1)/n.visible)-1===n.currentSlide||0===e)return n.currentItem=e,n.slides.removeClass(i+"active-slide").eq(e).addClass(i+"active-slide"),!1;n.currentItem=e,n.slides.removeClass(i+"active-slide").eq(e).addClass(i+"active-slide"),e=Math.floor(e/n.visible)}if(n.animating=!0,n.animatingTo=e,t&&n.pause(),n.vars.before(n),n.syncExists&&!o&&f.sync("animate"),n.vars.controlNav&&f.controlNav.active(),v||n.slides.removeClass(i+"active-slide").eq(e).addClass(i+"active-slide"),n.atEnd=0===e||e===n.last,n.vars.directionNav&&f.directionNav.update(),e===n.last&&(n.vars.end(n),n.vars.animationLoop||n.pause()),p)r?(n.slides.eq(n.currentSlide).css({opacity:0,zIndex:1}),n.slides.eq(e).css({opacity:1,zIndex:2}),n.wrapup(c)):(n.slides.eq(n.currentSlide).css({zIndex:1}).animate({opacity:0},n.vars.animationSpeed,n.vars.easing),n.slides.eq(e).css({zIndex:2}).animate({opacity:1},n.vars.animationSpeed,n.vars.easing,n.wrapup));else{var c=d?n.slides.filter(":first").height():n.computedW,g,h,S;v?(g=n.vars.itemMargin,S=(n.itemW+g)*n.move*n.animatingTo,h=S>n.limit&&1!==n.visible?n.limit:S):h=0===n.currentSlide&&e===n.count-1&&n.vars.animationLoop&&"next"!==n.direction?u?(n.count+n.cloneOffset)*c:0:n.currentSlide===n.last&&0===e&&n.vars.animationLoop&&"prev"!==n.direction?u?0:(n.count+1)*c:u?(n.count-1-e+n.cloneOffset)*c:(e+n.cloneOffset)*c,n.setProps(h,"",n.vars.animationSpeed),n.transitions?(n.vars.animationLoop&&n.atEnd||(n.animating=!1,n.currentSlide=n.animatingTo),n.container.unbind("webkitTransitionEnd transitionend"),n.container.bind("webkitTransitionEnd transitionend",function(){clearTimeout(n.ensureAnimationEnd),n.wrapup(c)}),clearTimeout(n.ensureAnimationEnd),n.ensureAnimationEnd=setTimeout(function(){n.wrapup(c)},n.vars.animationSpeed+100)):n.container.animate(n.args,n.vars.animationSpeed,n.vars.easing,function(){n.wrapup(c)})}n.vars.smoothHeight&&f.smoothHeight(n.vars.animationSpeed)}},n.wrapup=function(e){p||v||(0===n.currentSlide&&n.animatingTo===n.last&&n.vars.animationLoop?n.setProps(e,"jumpEnd"):n.currentSlide===n.last&&0===n.animatingTo&&n.vars.animationLoop&&n.setProps(e,"jumpStart")),n.animating=!1,n.currentSlide=n.animatingTo,n.vars.after(n)},n.animateSlides=function(){!n.animating&&e&&n.flexAnimate(n.getTarget("next"))},n.pause=function(){clearInterval(n.animatedSlides),n.animatedSlides=null,n.playing=!1,n.vars.pausePlay&&f.pausePlay.update("play"),n.syncExists&&f.sync("pause")},n.play=function(){n.playing&&clearInterval(n.animatedSlides),n.animatedSlides=n.animatedSlides||setInterval(n.animateSlides,n.vars.slideshowSpeed),n.started=n.playing=!0,n.vars.pausePlay&&f.pausePlay.update("pause"),n.syncExists&&f.sync("play")},n.stop=function(){n.pause(),n.stopped=!0},n.canAdvance=function(e,t){var a=m?n.pagingCount-1:n.last;return t?!0:m&&n.currentItem===n.count-1&&0===e&&"prev"===n.direction?!0:m&&0===n.currentItem&&e===n.pagingCount-1&&"next"!==n.direction?!1:e!==n.currentSlide||m?n.vars.animationLoop?!0:n.atEnd&&0===n.currentSlide&&e===a&&"next"!==n.direction?!1:n.atEnd&&n.currentSlide===a&&0===e&&"next"===n.direction?!1:!0:!1},n.getTarget=function(e){return n.direction=e,"next"===e?n.currentSlide===n.last?0:n.currentSlide+1:0===n.currentSlide?n.last:n.currentSlide-1},n.setProps=function(e,t,a){var i=function(){var a=e?e:(n.itemW+n.vars.itemMargin)*n.move*n.animatingTo,i=function(){if(v)return"setTouch"===t?e:u&&n.animatingTo===n.last?0:u?n.limit-(n.itemW+n.vars.itemMargin)*n.move*n.animatingTo:n.animatingTo===n.last?n.limit:a;switch(t){case"setTotal":return u?(n.count-1-n.currentSlide+n.cloneOffset)*e:(n.currentSlide+n.cloneOffset)*e;case"setTouch":return u?e:e;case"jumpEnd":return u?e:n.count*e;case"jumpStart":return u?n.count*e:e;default:return e}}();return-1*i+"px"}();n.transitions&&(i=d?"translate3d(0,"+i+",0)":"translate3d("+i+",0,0)",a=void 0!==a?a/1e3+"s":"0s",n.container.css("-"+n.pfx+"-transition-duration",a),n.container.css("transition-duration",a)),n.args[n.prop]=i,(n.transitions||void 0===a)&&n.container.css(n.args),n.container.css("transform",i)},n.setup=function(e){if(p)n.slides.css({width:"100%","float":"left",marginRight:"-100%",position:"relative"}),"init"===e&&(r?n.slides.css({opacity:0,display:"block",webkitTransition:"opacity "+n.vars.animationSpeed/1e3+"s ease",zIndex:1}).eq(n.currentSlide).css({opacity:1,zIndex:2}):0==n.vars.fadeFirstSlide?n.slides.css({opacity:0,display:"block",zIndex:1}).eq(n.currentSlide).css({zIndex:2}).css({opacity:1}):n.slides.css({opacity:0,display:"block",zIndex:1}).eq(n.currentSlide).css({zIndex:2}).animate({opacity:1},n.vars.animationSpeed,n.vars.easing)),n.vars.smoothHeight&&f.smoothHeight();else{var t,a;"init"===e&&(n.viewport=$('<div class="'+i+'viewport"></div>').css({overflow:"hidden",position:"relative"}).appendTo(n).append(n.container),n.cloneCount=0,n.cloneOffset=0,u&&(a=$.makeArray(n.slides).reverse(),n.slides=$(a),n.container.empty().append(n.slides))),n.vars.animationLoop&&!v&&(n.cloneCount=2,n.cloneOffset=1,"init"!==e&&n.container.find(".clone").remove(),n.container.append(f.uniqueID(n.slides.first().clone().addClass("clone")).attr("aria-hidden","true")).prepend(f.uniqueID(n.slides.last().clone().addClass("clone")).attr("aria-hidden","true"))),n.newSlides=$(n.vars.selector,n),t=u?n.count-1-n.currentSlide+n.cloneOffset:n.currentSlide+n.cloneOffset,d&&!v?(n.container.height(200*(n.count+n.cloneCount)+"%").css("position","absolute").width("100%"),setTimeout(function(){n.newSlides.css({display:"block"}),n.doMath(),n.viewport.height(n.h),n.setProps(t*n.h,"init")},"init"===e?100:0)):(n.container.width(200*(n.count+n.cloneCount)+"%"),n.setProps(t*n.computedW,"init"),setTimeout(function(){n.doMath(),n.newSlides.css({width:n.computedW,marginRight:n.computedM,"float":"left",display:"block"}),n.vars.smoothHeight&&f.smoothHeight()},"init"===e?100:0))}v||n.slides.removeClass(i+"active-slide").eq(n.currentSlide).addClass(i+"active-slide"),n.vars.init(n)},n.doMath=function(){var e=n.slides.first(),t=n.vars.itemMargin,a=n.vars.minItems,i=n.vars.maxItems;n.w=void 0===n.viewport?n.width():n.viewport.width(),n.h=e.height(),n.boxPadding=e.outerWidth()-e.width(),v?(n.itemT=n.vars.itemWidth+t,n.itemM=t,n.minW=a?a*n.itemT:n.w,n.maxW=i?i*n.itemT-t:n.w,n.itemW=n.minW>n.w?(n.w-t*(a-1))/a:n.maxW<n.w?(n.w-t*(i-1))/i:n.vars.itemWidth>n.w?n.w:n.vars.itemWidth,n.visible=Math.floor(n.w/n.itemW),n.move=n.vars.move>0&&n.vars.move<n.visible?n.vars.move:n.visible,n.pagingCount=Math.ceil((n.count-n.visible)/n.move+1),n.last=n.pagingCount-1,n.limit=1===n.pagingCount?0:n.vars.itemWidth>n.w?n.itemW*(n.count-1)+t*(n.count-1):(n.itemW+t)*n.count-n.w-t):(n.itemW=n.w,n.itemM=t,n.pagingCount=n.count,n.last=n.count-1),n.computedW=n.itemW-n.boxPadding,n.computedM=n.itemM},n.update=function(e,t){n.doMath(),v||(e<n.currentSlide?n.currentSlide+=1:e<=n.currentSlide&&0!==e&&(n.currentSlide-=1),n.animatingTo=n.currentSlide),n.vars.controlNav&&!n.manualControls&&("add"===t&&!v||n.pagingCount>n.controlNav.length?f.controlNav.update("add"):("remove"===t&&!v||n.pagingCount<n.controlNav.length)&&(v&&n.currentSlide>n.last&&(n.currentSlide-=1,n.animatingTo-=1),f.controlNav.update("remove",n.last))),n.vars.directionNav&&f.directionNav.update()},n.addSlide=function(e,t){var a=$(e);n.count+=1,n.last=n.count-1,d&&u?void 0!==t?n.slides.eq(n.count-t).after(a):n.container.prepend(a):void 0!==t?n.slides.eq(t).before(a):n.container.append(a),n.update(t,"add"),n.slides=$(n.vars.selector+":not(.clone)",n),n.setup(),n.vars.added(n)},n.removeSlide=function(e){var t=isNaN(e)?n.slides.index($(e)):e;n.count-=1,n.last=n.count-1,isNaN(e)?$(e,n.slides).remove():d&&u?n.slides.eq(n.last).remove():n.slides.eq(e).remove(),n.doMath(),n.update(t,"remove"),n.slides=$(n.vars.selector+":not(.clone)",n),n.setup(),n.vars.removed(n)},f.init()},$(window).blur(function(t){e=!1}).focus(function(t){e=!0}),$.flexslider.defaults={namespace:"flex-",selector:".slides > li",animation:"fade",easing:"swing",direction:"horizontal",reverse:!1,animationLoop:!0,smoothHeight:!1,startAt:0,slideshow:!0,slideshowSpeed:7e3,animationSpeed:600,initDelay:0,randomize:!1,fadeFirstSlide:!0,thumbCaptions:!1,pauseOnAction:!0,pauseOnHover:!1,pauseInvisible:!0,useCSS:!0,touch:!0,video:!1,controlNav:!0,directionNav:!0,prevText:"Previous",nextText:"Next",keyboard:!0,multipleKeyboard:!1,mousewheel:!1,pausePlay:!1,pauseText:"Pause",playText:"Play",controlsContainer:"",manualControls:"",customDirectionNav:"",sync:"",asNavFor:"",itemWidth:0,itemMargin:0,minItems:1,maxItems:0,move:0,allowOneSlide:!0,start:function(){},before:function(){},after:function(){},end:function(){},added:function(){},removed:function(){},init:function(){}},$.fn.flexslider=function(e){if(void 0===e&&(e={}),"object"==typeof e)return this.each(function(){var t=$(this),a=e.selector?e.selector:".slides > li",n=t.find(a);1===n.length&&e.allowOneSlide===!0||0===n.length?(n.fadeIn(400),e.start&&e.start(t)):void 0===t.data("flexslider")&&new $.flexslider(this,e)});var t=$(this).data("flexslider");switch(e){case"play":t.play();break;case"pause":t.pause();break;case"stop":t.stop();break;case"next":t.flexAnimate(t.getTarget("next"),!0);break;case"prev":case"previous":t.flexAnimate(t.getTarget("prev"),!0);break;default:"number"==typeof e&&t.flexAnimate(e,!0)}}}(jQuery); \ No newline at end of file
diff --git a/ecomp-sdk/epsdk-app-overlay/src/main/webapp/static/fusion/sample/js/slides.min.jquery.js b/ecomp-sdk/epsdk-app-overlay/src/main/webapp/static/fusion/sample/js/slides.min.jquery.js
deleted file mode 100644
index 1a1fcdd8..00000000
--- a/ecomp-sdk/epsdk-app-overlay/src/main/webapp/static/fusion/sample/js/slides.min.jquery.js
+++ /dev/null
@@ -1,20 +0,0 @@
-/*
-* Slides, A Slideshow Plugin for jQuery
-* Intructions: http://slidesjs.com
-* By: Nathan Searles, http://nathansearles.com
-* Version: 1.1.9
-* Updated: September 5th, 2011
-*
-* Licensed under the Apache License, Version 2.0 (the "License");
-* you may not use this file except in compliance with the License.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*/
-(function(a){a.fn.slides=function(b){return b=a.extend({},a.fn.slides.option,b),this.each(function(){function w(g,h,i){if(!p&&o){p=!0,b.animationStart(n+1);switch(g){case"next":l=n,k=n+1,k=e===k?0:k,r=f*2,g=-f*2,n=k;break;case"prev":l=n,k=n-1,k=k===-1?e-1:k,r=0,g=0,n=k;break;case"pagination":k=parseInt(i,10),l=a("."+b.paginationClass+" li."+b.currentClass+" a",c).attr("href").match("[^#/]+$"),k>l?(r=f*2,g=-f*2):(r=0,g=0),n=k}h==="fade"?b.crossfade?d.children(":eq("+k+")",c).css({zIndex:10}).fadeIn(b.fadeSpeed,b.fadeEasing,function(){b.autoHeight?d.animate({height:d.children(":eq("+k+")",c).outerHeight()},b.autoHeightSpeed,function(){d.children(":eq("+l+")",c).css({display:"none",zIndex:0}),d.children(":eq("+k+")",c).css({zIndex:0}),b.animationComplete(k+1),p=!1}):(d.children(":eq("+l+")",c).css({display:"none",zIndex:0}),d.children(":eq("+k+")",c).css({zIndex:0}),b.animationComplete(k+1),p=!1)}):d.children(":eq("+l+")",c).fadeOut(b.fadeSpeed,b.fadeEasing,function(){b.autoHeight?d.animate({height:d.children(":eq("+k+")",c).outerHeight()},b.autoHeightSpeed,function(){d.children(":eq("+k+")",c).fadeIn(b.fadeSpeed,b.fadeEasing)}):d.children(":eq("+k+")",c).fadeIn(b.fadeSpeed,b.fadeEasing,function(){a.browser.msie&&a(this).get(0).style.removeAttribute("filter")}),b.animationComplete(k+1),p=!1}):(d.children(":eq("+k+")").css({left:r,display:"block"}),b.autoHeight?d.animate({left:g,height:d.children(":eq("+k+")").outerHeight()},b.slideSpeed,b.slideEasing,function(){d.css({left:-f}),d.children(":eq("+k+")").css({left:f,zIndex:5}),d.children(":eq("+l+")").css({left:f,display:"none",zIndex:0}),b.animationComplete(k+1),p=!1}):d.animate({left:g},b.slideSpeed,b.slideEasing,function(){d.css({left:-f}),d.children(":eq("+k+")").css({left:f,zIndex:5}),d.children(":eq("+l+")").css({left:f,display:"none",zIndex:0}),b.animationComplete(k+1),p=!1})),b.pagination&&(a("."+b.paginationClass+" li."+b.currentClass,c).removeClass(b.currentClass),a("."+b.paginationClass+" li:eq("+k+")",c).addClass(b.currentClass))}}function x(){clearInterval(c.data("interval"))}function y(){b.pause?(clearTimeout(c.data("pause")),clearInterval(c.data("interval")),u=setTimeout(function(){clearTimeout(c.data("pause")),v=setInterval(function(){w("next",i)},b.play),c.data("interval",v)},b.pause),c.data("pause",u)):x()}a("."+b.container,a(this)).children().wrapAll('<div class="slides_control"/>');var c=a(this),d=a(".slides_control",c),e=d.children().size(),f=d.children().outerWidth(),g=d.children().outerHeight(),h=b.start-1,i=b.effect.indexOf(",")<0?b.effect:b.effect.replace(" ","").split(",")[0],j=b.effect.indexOf(",")<0?i:b.effect.replace(" ","").split(",")[1],k=0,l=0,m=0,n=0,o,p,q,r,s,t,u,v;if(e<2)return a("."+b.container,a(this)).fadeIn(b.fadeSpeed,b.fadeEasing,function(){o=!0,b.slidesLoaded()}),a("."+b.next+", ."+b.prev).fadeOut(0),!1;if(e<2)return;h<0&&(h=0),h>e&&(h=e-1),b.start&&(n=h),b.randomize&&d.randomize(),a("."+b.container,c).css({overflow:"hidden",position:"relative"}),d.children().css({position:"absolute",top:0,left:d.children().outerWidth(),zIndex:0,display:"none"}),d.css({position:"relative",width:f*3,height:g,left:-f}),a("."+b.container,c).css({display:"block"}),b.autoHeight&&(d.children().css({height:"auto"}),d.animate({height:d.children(":eq("+h+")").outerHeight()},b.autoHeightSpeed));if(b.preload&&d.find("img:eq("+h+")").length){a("."+b.container,c).css({background:"url("+b.preloadImage+") no-repeat 50% 50%"});var z=d.find("img:eq("+h+")").attr("src")+"?"+(new Date).getTime();a("img",c).parent().attr("class")!="slides_control"?t=d.children(":eq(0)")[0].tagName.toLowerCase():t=d.find("img:eq("+h+")"),d.find("img:eq("+h+")").attr("src",z).load(function(){d.find(t+":eq("+h+")").fadeIn(b.fadeSpeed,b.fadeEasing,function(){a(this).css({zIndex:5}),a("."+b.container,c).css({background:""}),o=!0,b.slidesLoaded()})})}else d.children(":eq("+h+")").fadeIn(b.fadeSpeed,b.fadeEasing,function(){o=!0,b.slidesLoaded()});b.bigTarget&&(d.children().css({cursor:"pointer"}),d.children().click(function(){return w("next",i),!1})),b.hoverPause&&b.play&&(d.bind("mouseover",function(){x()}),d.bind("mouseleave",function(){y()})),b.generateNextPrev&&(a("."+b.container,c).after('<a href="#" class="'+b.prev+'">Prev</a>'),a("."+b.prev,c).after('<a href="#" class="'+b.next+'">Next</a>')),a("."+b.next,c).click(function(a){a.preventDefault(),b.play&&y(),w("next",i)}),a("."+b.prev,c).click(function(a){a.preventDefault(),b.play&&y(),w("prev",i)}),b.generatePagination?(b.prependPagination?c.prepend("<ul class="+b.paginationClass+"></ul>"):c.append("<ul class="+b.paginationClass+"></ul>"),d.children().each(function(){a("."+b.paginationClass,c).append('<li><a href="#'+m+'">'+(m+1)+"</a></li>"),m++})):a("."+b.paginationClass+" li a",c).each(function(){a(this).attr("href","#"+m),m++}),a("."+b.paginationClass+" li:eq("+h+")",c).addClass(b.currentClass),a("."+b.paginationClass+" li a",c).click(function(){return b.play&&y(),q=a(this).attr("href").match("[^#/]+$"),n!=q&&w("pagination",j,q),!1}),a("a.link",c).click(function(){return b.play&&y(),q=a(this).attr("href").match("[^#/]+$")-1,n!=q&&w("pagination",j,q),!1}),b.play&&(v=setInterval(function(){w("next",i)},b.play),c.data("interval",v))})},a.fn.slides.option={preload:!1,preloadImage:"/img/loading.gif",container:"slides_container",generateNextPrev:!1,next:"next",prev:"prev",pagination:!0,generatePagination:!0,prependPagination:!1,paginationClass:"pagination",currentClass:"current",fadeSpeed:350,fadeEasing:"",slideSpeed:350,slideEasing:"",start:1,effect:"slide",crossfade:!1,randomize:!1,play:0,pause:0,hoverPause:!1,autoHeight:!1,autoHeightSpeed:350,bigTarget:!1,animationStart:function(){},animationComplete:function(){},slidesLoaded:function(){}},a.fn.randomize=function(b){function c(){return Math.round(Math.random())-.5}return a(this).each(function(){var d=a(this),e=d.children(),f=e.length;if(f>1){e.hide();var g=[];for(i=0;i<f;i++)g[g.length]=i;g=g.sort(c),a.each(g,function(a,c){var f=e.eq(c),g=f.clone(!0);g.show().appendTo(d),b!==undefined&&b(f,g),f.remove()})}})}})(jQuery) \ No newline at end of file
diff --git a/ecomp-sdk/epsdk-app-overlay/src/main/webapp/static/fusion/sample/js/spacegallery.js b/ecomp-sdk/epsdk-app-overlay/src/main/webapp/static/fusion/sample/js/spacegallery.js
deleted file mode 100644
index 69ab2ccc..00000000
--- a/ecomp-sdk/epsdk-app-overlay/src/main/webapp/static/fusion/sample/js/spacegallery.js
+++ /dev/null
@@ -1,235 +0,0 @@
-/**
- *
- * Spacegallery
- * Author: Stefan Petre www.eyecon.ro
- *
- */
-
-(function($){
- EYE.extend({
-
- spacegallery: {
-
- //default options (many options are controled via CSS)
- defaults: {
- border: 6, // border arround the image
- perspective: 140, // perpective height
- minScale: 0.2, // minimum scale for the image in the back
- duration: 800, // aimation duration
- loadingClass: null, // CSS class applied to the element while looading images
- before: function(){return false},
- after: function(){return false}
- },
-
- animated: false,
-
- //position images
- positionImages: function(el) {
- var top = 0;
- EYE.spacegallery.animated = false;
- $(el)
- .find('a')
- .removeClass(el.spacegalleryCfg.loadingClass)
- .end()
- .find('img')
- .removeAttr('height')
- .each(function(nr){
- var newWidth = this.spacegallery.origWidth - (this.spacegallery.origWidth - this.spacegallery.origWidth * el.spacegalleryCfg.minScale) * el.spacegalleryCfg.asins[nr];
- $(this)
- .css({
- top: el.spacegalleryCfg.tops[nr] + 'px',
- marginLeft: - parseInt((newWidth + el.spacegalleryCfg.border)/2, 10) + 'px',
- opacity: 1 - el.spacegalleryCfg.asins[nr]
- })
- .attr('width', parseInt(newWidth));
- this.spacegallery.next = el.spacegalleryCfg.asins[nr+1];
- this.spacegallery.nextTop = el.spacegalleryCfg.tops[nr+1] - el.spacegalleryCfg.tops[nr];
- this.spacegallery.origTop = el.spacegalleryCfg.tops[nr];
- this.spacegallery.opacity = 1 - el.spacegalleryCfg.asins[nr];
- this.spacegallery.increment = el.spacegalleryCfg.asins[nr] - this.spacegallery.next;
- this.spacegallery.current = el.spacegalleryCfg.asins[nr];
- this.spacegallery.width = newWidth;
- })
- },
-
- //animate to nex image
- next: function(e) {
- if (EYE.spacegallery.animated === false) {
- EYE.spacegallery.animated = true;
- var el = this.parentNode;
- el.spacegalleryCfg.before.apply(el);
- $(el)
- .css('spacegallery', 0)
- .animate({
- spacegallery: 100
- },{
- easing: 'easeOut',
- duration: el.spacegalleryCfg.duration,
- complete: function() {
- $(el)
- .find('img:last')
- .prependTo(el);
- EYE.spacegallery.positionImages(el);
- el.spacegalleryCfg.after.apply(el);
- },
- step: function(now) {
- $('img', this)
- .each(function(nr){
- var newWidth, top, next;
- if (nr + 1 == el.spacegalleryCfg.images) {
- top = this.spacegallery.origTop + this.spacegallery.nextTop * 4 * now /100;
- newWidth = this.spacegallery.width * top / this.spacegallery.origTop;
- $(this)
- .css({
- top: top + 'px',
- opacity: 0.7 - now/100,
- marginLeft: - parseInt((newWidth + el.spacegalleryCfg.border)/2, 10) + 'px'
- })
- .attr('width', newWidth);
- } else {
- next = this.spacegallery.current - this.spacegallery.increment * now /100;
- newWidth = this.spacegallery.origWidth - (this.spacegallery.origWidth - this.spacegallery.origWidth * el.spacegalleryCfg.minScale) * next;
- $(this).css({
- top: this.spacegallery.origTop + this.spacegallery.nextTop * now /100 + 'px',
- opacity: 1 - next,
- marginLeft: - parseInt((newWidth + el.spacegalleryCfg.border)/2, 10) + 'px'
- })
- .attr('width', newWidth);
- }
- });
- }
- });
- }
-
- this.blur();
- return false;
- },
-
- autoNext: function(el) {
-
- if (EYE.spacegallery.animated === false) {
- EYE.spacegallery.animated = true;
- el.spacegalleryCfg.before.apply(el); // run the "before" function
- $(el)
- .css('spacegallery', 0)
- .animate({
- spacegallery: 100
- },{
- easing: 'easeOut',
- duration: el.spacegalleryCfg.duration,
- complete: function() { // after animation is complete, move the front image to the back
- $(el)
- .find('img:last') // find the last image in this div
- .prependTo(el); // and stick it at the beginning
- EYE.spacegallery.positionImages(el); // run "position images"
- el.spacegalleryCfg.after.apply(el); //run the "after" function
- },
- step: function(now) {
- $('img', this)
- .each(function(nr){
- var newWidth, top, next;
- if (nr + 1 == el.spacegalleryCfg.images) {
- top = this.spacegallery.origTop + this.spacegallery.nextTop * 4 * now /100;
- newWidth = this.spacegallery.width * top / this.spacegallery.origTop;
- $(this)
- .css({
- top: top + 'px',
- opacity: 0.7 - now/100,
- marginLeft: - parseInt((newWidth + el.spacegalleryCfg.border)/2, 10) + 'px'
- })
- .attr('width', newWidth);
- } else {
- next = this.spacegallery.current - this.spacegallery.increment * now /100;
- newWidth = this.spacegallery.origWidth - (this.spacegallery.origWidth - this.spacegallery.origWidth * el.spacegalleryCfg.minScale) * next;
- $(this).css({
- top: this.spacegallery.origTop + this.spacegallery.nextTop * now /100 + 'px',
- opacity: 1 - next,
- marginLeft: - parseInt((newWidth + el.spacegalleryCfg.border)/2, 10) + 'px'
- })
- .attr('width', newWidth);
- }
- });
- }
- });
- }
-
- return false;
- },
-
- //constructor
- init: function(opt) {
- opt = $.extend({}, EYE.spacegallery.defaults, opt||{});
- return this.each(function(){
- var el = this;
- if ($(el).is('.spacegallery')) {
- $('<a href="#"></a>')
- .appendTo(this)
- .addClass(opt.loadingClass)
- .bind('click', EYE.spacegallery.next);
- el.spacegalleryCfg = opt;
- el.spacegalleryCfg.images = el.getElementsByTagName('img').length;
- el.spacegalleryCfg.loaded = 0;
- el.spacegalleryCfg.asin = Math.asin(1);
- el.spacegalleryCfg.asins = {};
- el.spacegalleryCfg.tops = {};
- el.spacegalleryCfg.increment = parseInt(el.spacegalleryCfg.perspective/el.spacegalleryCfg.images, 10);
- var top = 0;
- $('img', el)
- .each(function(nr){
- var imgEl = new Image();
- var elImg = this;
- el.spacegalleryCfg.asins[nr] = 1 - Math.asin((nr+1)/el.spacegalleryCfg.images)/el.spacegalleryCfg.asin;
- top += el.spacegalleryCfg.increment - el.spacegalleryCfg.increment * el.spacegalleryCfg.asins[nr];
- el.spacegalleryCfg.tops[nr] = top;
- elImg.spacegallery = {};
- imgEl.src = this.src;
- if (imgEl.complete) {
- el.spacegalleryCfg.loaded ++;
- elImg.spacegallery.origWidth = imgEl.width;
- elImg.spacegallery.origHeight = imgEl.height
- } else {
- imgEl.onload = function() {
- el.spacegalleryCfg.loaded ++;
- elImg.spacegallery.origWidth = imgEl.width;
- elImg.spacegallery.origHeight = imgEl.height
- if (el.spacegalleryCfg.loaded == el.spacegalleryCfg.images) {
-
- EYE.spacegallery.positionImages(el);
- }
- };
- }
- });
- el.spacegalleryCfg.asins[el.spacegalleryCfg.images] = el.spacegalleryCfg.asins[el.spacegalleryCfg.images - 1] * 1.3;
- el.spacegalleryCfg.tops[el.spacegalleryCfg.images] = el.spacegalleryCfg.tops[el.spacegalleryCfg.images - 1] * 1.3;
- if (el.spacegalleryCfg.loaded == el.spacegalleryCfg.images) {
- EYE.spacegallery.positionImages(el);
- setInterval(function() { EYE.spacegallery.autoNext(el); }, 4000);
- }
- }
- });
- }
- }
- });
-
- $.fn.extend({
-
- /**
- * Create a space gallery
- * @name spacegallery
- * @description create a space gallery
- * @option int border Images' border. Default: 6
- * @option int perspective Perpective height. Default: 140
- * @option float minScale Minimum scale for the image in the back. Default: 0.2
- * @option int duration Animation duration. Default: 800
- * @option string loadingClass CSS class applied to the element while looading images. Default: null
- * @option function before Callback function triggered before going to the next image
- * @option function after Callback function triggered after going to the next image
- */
- spacegallery: EYE.spacegallery.init
- });
- $.extend($.easing,{
- easeOut:function (x, t, b, c, d) {
- return -c *(t/=d)*(t-2) + b;
- }
- });
-})(jQuery); \ No newline at end of file
diff --git a/ecomp-sdk/epsdk-app-overlay/src/main/webapp/static/fusion/sample/js/utils.js b/ecomp-sdk/epsdk-app-overlay/src/main/webapp/static/fusion/sample/js/utils.js
deleted file mode 100644
index d9be8532..00000000
--- a/ecomp-sdk/epsdk-app-overlay/src/main/webapp/static/fusion/sample/js/utils.js
+++ /dev/null
@@ -1,252 +0,0 @@
-/**
- *
- * Utilities
- * Author: Stefan Petre www.eyecon.ro
- *
- */
-(function($) {
-EYE.extend({
- getPosition : function(e, forceIt)
- {
- var x = 0;
- var y = 0;
- var es = e.style;
- var restoreStyles = false;
- if (forceIt && jQuery.curCSS(e,'display') == 'none') {
- var oldVisibility = es.visibility;
- var oldPosition = es.position;
- restoreStyles = true;
- es.visibility = 'hidden';
- es.display = 'block';
- es.position = 'absolute';
- }
- var el = e;
- if (el.getBoundingClientRect) { // IE
- var box = el.getBoundingClientRect();
- x = box.left + Math.max(document.documentElement.scrollLeft, document.body.scrollLeft) - 2;
- y = box.top + Math.max(document.documentElement.scrollTop, document.body.scrollTop) - 2;
- } else {
- x = el.offsetLeft;
- y = el.offsetTop;
- el = el.offsetParent;
- if (e != el) {
- while (el) {
- x += el.offsetLeft;
- y += el.offsetTop;
- el = el.offsetParent;
- }
- }
- if (jQuery.browser.safari && jQuery.curCSS(e, 'position') == 'absolute' ) {
- x -= document.body.offsetLeft;
- y -= document.body.offsetTop;
- }
- el = e.parentNode;
- while (el && el.tagName.toUpperCase() != 'BODY' && el.tagName.toUpperCase() != 'HTML')
- {
- if (jQuery.curCSS(el, 'display') != 'inline') {
- x -= el.scrollLeft;
- y -= el.scrollTop;
- }
- el = el.parentNode;
- }
- }
- if (restoreStyles == true) {
- es.display = 'none';
- es.position = oldPosition;
- es.visibility = oldVisibility;
- }
- return {x:x, y:y};
- },
- getSize : function(e)
- {
- var w = parseInt(jQuery.curCSS(e,'width'), 10);
- var h = parseInt(jQuery.curCSS(e,'height'), 10);
- var wb = 0;
- var hb = 0;
- if (jQuery.curCSS(e, 'display') != 'none') {
- wb = e.offsetWidth;
- hb = e.offsetHeight;
- } else {
- var es = e.style;
- var oldVisibility = es.visibility;
- var oldPosition = es.position;
- es.visibility = 'hidden';
- es.display = 'block';
- es.position = 'absolute';
- wb = e.offsetWidth;
- hb = e.offsetHeight;
- es.display = 'none';
- es.position = oldPosition;
- es.visibility = oldVisibility;
- }
- return {w:w, h:h, wb:wb, hb:hb};
- },
- getClient : function(e)
- {
- var h, w;
- if (e) {
- w = e.clientWidth;
- h = e.clientHeight;
- } else {
- var de = document.documentElement;
- w = window.innerWidth || self.innerWidth || (de&&de.clientWidth) || document.body.clientWidth;
- h = window.innerHeight || self.innerHeight || (de&&de.clientHeight) || document.body.clientHeight;
- }
- return {w:w,h:h};
- },
- getScroll : function (e)
- {
- var t=0, l=0, w=0, h=0, iw=0, ih=0;
- if (e && e.nodeName.toLowerCase() != 'body') {
- t = e.scrollTop;
- l = e.scrollLeft;
- w = e.scrollWidth;
- h = e.scrollHeight;
- } else {
- if (document.documentElement) {
- t = document.documentElement.scrollTop;
- l = document.documentElement.scrollLeft;
- w = document.documentElement.scrollWidth;
- h = document.documentElement.scrollHeight;
- } else if (document.body) {
- t = document.body.scrollTop;
- l = document.body.scrollLeft;
- w = document.body.scrollWidth;
- h = document.body.scrollHeight;
- }
- if (typeof pageYOffset != 'undefined') {
- t = pageYOffset;
- l = pageXOffset;
- }
- iw = self.innerWidth||document.documentElement.clientWidth||document.body.clientWidth||0;
- ih = self.innerHeight||document.documentElement.clientHeight||document.body.clientHeight||0;
- }
- return { t: t, l: l, w: w, h: h, iw: iw, ih: ih };
- },
- getMargins : function(e, toInteger)
- {
- var t = jQuery.curCSS(e,'marginTop') || '';
- var r = jQuery.curCSS(e,'marginRight') || '';
- var b = jQuery.curCSS(e,'marginBottom') || '';
- var l = jQuery.curCSS(e,'marginLeft') || '';
- if (toInteger)
- return {
- t: parseInt(t, 10)||0,
- r: parseInt(r, 10)||0,
- b: parseInt(b, 10)||0,
- l: parseInt(l, 10)
- };
- else
- return {t: t, r: r, b: b, l: l};
- },
- getPadding : function(e, toInteger)
- {
- var t = jQuery.curCSS(e,'paddingTop') || '';
- var r = jQuery.curCSS(e,'paddingRight') || '';
- var b = jQuery.curCSS(e,'paddingBottom') || '';
- var l = jQuery.curCSS(e,'paddingLeft') || '';
- if (toInteger)
- return {
- t: parseInt(t, 10)||0,
- r: parseInt(r, 10)||0,
- b: parseInt(b, 10)||0,
- l: parseInt(l, 10)
- };
- else
- return {t: t, r: r, b: b, l: l};
- },
- getBorder : function(e, toInteger)
- {
- var t = jQuery.curCSS(e,'borderTopWidth') || '';
- var r = jQuery.curCSS(e,'borderRightWidth') || '';
- var b = jQuery.curCSS(e,'borderBottomWidth') || '';
- var l = jQuery.curCSS(e,'borderLeftWidth') || '';
- if (toInteger)
- return {
- t: parseInt(t, 10)||0,
- r: parseInt(r, 10)||0,
- b: parseInt(b, 10)||0,
- l: parseInt(l, 10)||0
- };
- else
- return {t: t, r: r, b: b, l: l};
- },
- traverseDOM : function(nodeEl, func)
- {
- func(nodeEl);
- nodeEl = nodeEl.firstChild;
- while(nodeEl){
- EYE.traverseDOM(nodeEl, func);
- nodeEl = nodeEl.nextSibling;
- }
- },
- getInnerWidth : function(el, scroll) {
- var offsetW = el.offsetWidth;
- return scroll ? Math.max(el.scrollWidth,offsetW) - offsetW + el.clientWidth:el.clientWidth;
- },
- getInnerHeight : function(el, scroll) {
- var offsetH = el.offsetHeight;
- return scroll ? Math.max(el.scrollHeight,offsetH) - offsetH + el.clientHeight:el.clientHeight;
- },
- getExtraWidth : function(el) {
- if($.boxModel)
- return (parseInt($.curCSS(el, 'paddingLeft'))||0)
- + (parseInt($.curCSS(el, 'paddingRight'))||0)
- + (parseInt($.curCSS(el, 'borderLeftWidth'))||0)
- + (parseInt($.curCSS(el, 'borderRightWidth'))||0);
- return 0;
- },
- getExtraHeight : function(el) {
- if($.boxModel)
- return (parseInt($.curCSS(el, 'paddingTop'))||0)
- + (parseInt($.curCSS(el, 'paddingBottom'))||0)
- + (parseInt($.curCSS(el, 'borderTopWidth'))||0)
- + (parseInt($.curCSS(el, 'borderBottomWidth'))||0);
- return 0;
- },
- isChildOf: function(parentEl, el, container) {
- if (parentEl == el) {
- return true;
- }
- if (!el || !el.nodeType || el.nodeType != 1) {
- return false;
- }
- if (parentEl.contains && !$.browser.safari) {
- return parentEl.contains(el);
- }
- if ( parentEl.compareDocumentPosition ) {
- return !!(parentEl.compareDocumentPosition(el) & 16);
- }
- var prEl = el.parentNode;
- while(prEl && prEl != container) {
- if (prEl == parentEl)
- return true;
- prEl = prEl.parentNode;
- }
- return false;
- },
- centerEl : function(el, axis)
- {
- var clientScroll = EYE.getScroll();
- var size = EYE.getSize(el);
- if (!axis || axis == 'vertically')
- $(el).css(
- {
- top: clientScroll.t + ((Math.min(clientScroll.h,clientScroll.ih) - size.hb)/2) + 'px'
- }
- );
- if (!axis || axis == 'horizontally')
- $(el).css(
- {
- left: clientScroll.l + ((Math.min(clientScroll.w,clientScroll.iw) - size.wb)/2) + 'px'
- }
- );
- }
-});
-if (!$.easing.easeout) {
- $.easing.easeout = function(p, n, firstNum, delta, duration) {
- return -delta * ((n=n/duration-1)*n*n*n - 1) + firstNum;
- };
-}
-
-})(jQuery); \ No newline at end of file
diff --git a/ecomp-sdk/epsdk-app-overlay/src/main/webapp/static/fusion/sample/org_chart/images/bkgd.png b/ecomp-sdk/epsdk-app-overlay/src/main/webapp/static/fusion/sample/org_chart/images/bkgd.png
deleted file mode 100644
index 3bbaf5ee..00000000
--- a/ecomp-sdk/epsdk-app-overlay/src/main/webapp/static/fusion/sample/org_chart/images/bkgd.png
+++ /dev/null
Binary files differ
diff --git a/ecomp-sdk/epsdk-app-overlay/src/main/webapp/static/fusion/sample/org_chart/images/raspberry.jpg b/ecomp-sdk/epsdk-app-overlay/src/main/webapp/static/fusion/sample/org_chart/images/raspberry.jpg
deleted file mode 100644
index e79a0515..00000000
--- a/ecomp-sdk/epsdk-app-overlay/src/main/webapp/static/fusion/sample/org_chart/images/raspberry.jpg
+++ /dev/null
Binary files differ