http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/32b52cb9/modules/webconfig/nodejs/node_modules/admin-lte/plugins/fastclick/fastclick.js
----------------------------------------------------------------------
diff --git 
a/modules/webconfig/nodejs/node_modules/admin-lte/plugins/fastclick/fastclick.js
 
b/modules/webconfig/nodejs/node_modules/admin-lte/plugins/fastclick/fastclick.js
new file mode 100644
index 0000000..3af4f9d
--- /dev/null
+++ 
b/modules/webconfig/nodejs/node_modules/admin-lte/plugins/fastclick/fastclick.js
@@ -0,0 +1,841 @@
+;(function () {
+       'use strict';
+
+       /**
+        * @preserve FastClick: polyfill to remove click delays on browsers 
with touch UIs.
+        *
+        * @codingstandard ftlabs-jsv2
+        * @copyright The Financial Times Limited [All Rights Reserved]
+        * @license MIT License (see LICENSE.txt)
+        */
+
+       /*jslint browser:true, node:true*/
+       /*global define, Event, Node*/
+
+
+       /**
+        * Instantiate fast-clicking listeners on the specified layer.
+        *
+        * @constructor
+        * @param {Element} layer The layer to listen on
+        * @param {Object} [options={}] The options to override the defaults
+        */
+       function FastClick(layer, options) {
+               var oldOnClick;
+
+               options = options || {};
+
+               /**
+                * Whether a click is currently being tracked.
+                *
+                * @type boolean
+                */
+               this.trackingClick = false;
+
+
+               /**
+                * Timestamp for when click tracking started.
+                *
+                * @type number
+                */
+               this.trackingClickStart = 0;
+
+
+               /**
+                * The element being tracked for a click.
+                *
+                * @type EventTarget
+                */
+               this.targetElement = null;
+
+
+               /**
+                * X-coordinate of touch start event.
+                *
+                * @type number
+                */
+               this.touchStartX = 0;
+
+
+               /**
+                * Y-coordinate of touch start event.
+                *
+                * @type number
+                */
+               this.touchStartY = 0;
+
+
+               /**
+                * ID of the last touch, retrieved from Touch.identifier.
+                *
+                * @type number
+                */
+               this.lastTouchIdentifier = 0;
+
+
+               /**
+                * Touchmove boundary, beyond which a click will be cancelled.
+                *
+                * @type number
+                */
+               this.touchBoundary = options.touchBoundary || 10;
+
+
+               /**
+                * The FastClick layer.
+                *
+                * @type Element
+                */
+               this.layer = layer;
+
+               /**
+                * The minimum time between tap(touchstart and touchend) events
+                *
+                * @type number
+                */
+               this.tapDelay = options.tapDelay || 200;
+
+               /**
+                * The maximum time for a tap
+                *
+                * @type number
+                */
+               this.tapTimeout = options.tapTimeout || 700;
+
+               if (FastClick.notNeeded(layer)) {
+                       return;
+               }
+
+               // Some old versions of Android don't have 
Function.prototype.bind
+               function bind(method, context) {
+                       return function() { return method.apply(context, 
arguments); };
+               }
+
+
+               var methods = ['onMouse', 'onClick', 'onTouchStart', 
'onTouchMove', 'onTouchEnd', 'onTouchCancel'];
+               var context = this;
+               for (var i = 0, l = methods.length; i < l; i++) {
+                       context[methods[i]] = bind(context[methods[i]], 
context);
+               }
+
+               // Set up event handlers as required
+               if (deviceIsAndroid) {
+                       layer.addEventListener('mouseover', this.onMouse, true);
+                       layer.addEventListener('mousedown', this.onMouse, true);
+                       layer.addEventListener('mouseup', this.onMouse, true);
+               }
+
+               layer.addEventListener('click', this.onClick, true);
+               layer.addEventListener('touchstart', this.onTouchStart, false);
+               layer.addEventListener('touchmove', this.onTouchMove, false);
+               layer.addEventListener('touchend', this.onTouchEnd, false);
+               layer.addEventListener('touchcancel', this.onTouchCancel, 
false);
+
+               // Hack is required for browsers that don't support 
Event#stopImmediatePropagation (e.g. Android 2)
+               // which is how FastClick normally stops click events bubbling 
to callbacks registered on the FastClick
+               // layer when they are cancelled.
+               if (!Event.prototype.stopImmediatePropagation) {
+                       layer.removeEventListener = function(type, callback, 
capture) {
+                               var rmv = Node.prototype.removeEventListener;
+                               if (type === 'click') {
+                                       rmv.call(layer, type, callback.hijacked 
|| callback, capture);
+                               } else {
+                                       rmv.call(layer, type, callback, 
capture);
+                               }
+                       };
+
+                       layer.addEventListener = function(type, callback, 
capture) {
+                               var adv = Node.prototype.addEventListener;
+                               if (type === 'click') {
+                                       adv.call(layer, type, callback.hijacked 
|| (callback.hijacked = function(event) {
+                                               if (!event.propagationStopped) {
+                                                       callback(event);
+                                               }
+                                       }), capture);
+                               } else {
+                                       adv.call(layer, type, callback, 
capture);
+                               }
+                       };
+               }
+
+               // If a handler is already declared in the element's onclick 
attribute, it will be fired before
+               // FastClick's onClick handler. Fix this by pulling out the 
user-defined handler function and
+               // adding it as listener.
+               if (typeof layer.onclick === 'function') {
+
+                       // Android browser on at least 3.2 requires a new 
reference to the function in layer.onclick
+                       // - the old one won't work if passed to 
addEventListener directly.
+                       oldOnClick = layer.onclick;
+                       layer.addEventListener('click', function(event) {
+                               oldOnClick(event);
+                       }, false);
+                       layer.onclick = null;
+               }
+       }
+
+       /**
+       * Windows Phone 8.1 fakes user agent string to look like Android and 
iPhone.
+       *
+       * @type boolean
+       */
+       var deviceIsWindowsPhone = navigator.userAgent.indexOf("Windows Phone") 
>= 0;
+
+       /**
+        * Android requires exceptions.
+        *
+        * @type boolean
+        */
+       var deviceIsAndroid = navigator.userAgent.indexOf('Android') > 0 && 
!deviceIsWindowsPhone;
+
+
+       /**
+        * iOS requires exceptions.
+        *
+        * @type boolean
+        */
+       var deviceIsIOS = /iP(ad|hone|od)/.test(navigator.userAgent) && 
!deviceIsWindowsPhone;
+
+
+       /**
+        * iOS 4 requires an exception for select elements.
+        *
+        * @type boolean
+        */
+       var deviceIsIOS4 = deviceIsIOS && (/OS 
4_\d(_\d)?/).test(navigator.userAgent);
+
+
+       /**
+        * iOS 6.0-7.* requires the target element to be manually derived
+        *
+        * @type boolean
+        */
+       var deviceIsIOSWithBadTarget = deviceIsIOS && (/OS 
[6-7]_\d/).test(navigator.userAgent);
+
+       /**
+        * BlackBerry requires exceptions.
+        *
+        * @type boolean
+        */
+       var deviceIsBlackBerry10 = navigator.userAgent.indexOf('BB10') > 0;
+
+       /**
+        * Determine whether a given element requires a native click.
+        *
+        * @param {EventTarget|Element} target Target DOM element
+        * @returns {boolean} Returns true if the element needs a native click
+        */
+       FastClick.prototype.needsClick = function(target) {
+               switch (target.nodeName.toLowerCase()) {
+
+               // Don't send a synthetic click to disabled inputs (issue #62)
+               case 'button':
+               case 'select':
+               case 'textarea':
+                       if (target.disabled) {
+                               return true;
+                       }
+
+                       break;
+               case 'input':
+
+                       // File inputs need real clicks on iOS 6 due to a 
browser bug (issue #68)
+                       if ((deviceIsIOS && target.type === 'file') || 
target.disabled) {
+                               return true;
+                       }
+
+                       break;
+               case 'label':
+               case 'iframe': // iOS8 homescreen apps can prevent events 
bubbling into frames
+               case 'video':
+                       return true;
+               }
+
+               return (/\bneedsclick\b/).test(target.className);
+       };
+
+
+       /**
+        * Determine whether a given element requires a call to focus to 
simulate click into element.
+        *
+        * @param {EventTarget|Element} target Target DOM element
+        * @returns {boolean} Returns true if the element requires a call to 
focus to simulate native click.
+        */
+       FastClick.prototype.needsFocus = function(target) {
+               switch (target.nodeName.toLowerCase()) {
+               case 'textarea':
+                       return true;
+               case 'select':
+                       return !deviceIsAndroid;
+               case 'input':
+                       switch (target.type) {
+                       case 'button':
+                       case 'checkbox':
+                       case 'file':
+                       case 'image':
+                       case 'radio':
+                       case 'submit':
+                               return false;
+                       }
+
+                       // No point in attempting to focus disabled inputs
+                       return !target.disabled && !target.readOnly;
+               default:
+                       return (/\bneedsfocus\b/).test(target.className);
+               }
+       };
+
+
+       /**
+        * Send a click event to the specified element.
+        *
+        * @param {EventTarget|Element} targetElement
+        * @param {Event} event
+        */
+       FastClick.prototype.sendClick = function(targetElement, event) {
+               var clickEvent, touch;
+
+               // On some Android devices activeElement needs to be blurred 
otherwise the synthetic click will have no effect (#24)
+               if (document.activeElement && document.activeElement !== 
targetElement) {
+                       document.activeElement.blur();
+               }
+
+               touch = event.changedTouches[0];
+
+               // Synthesise a click event, with an extra attribute so it can 
be tracked
+               clickEvent = document.createEvent('MouseEvents');
+               
clickEvent.initMouseEvent(this.determineEventType(targetElement), true, true, 
window, 1, touch.screenX, touch.screenY, touch.clientX, touch.clientY, false, 
false, false, false, 0, null);
+               clickEvent.forwardedTouchEvent = true;
+               targetElement.dispatchEvent(clickEvent);
+       };
+
+       FastClick.prototype.determineEventType = function(targetElement) {
+
+               //Issue #159: Android Chrome Select Box does not open with a 
synthetic click event
+               if (deviceIsAndroid && targetElement.tagName.toLowerCase() === 
'select') {
+                       return 'mousedown';
+               }
+
+               return 'click';
+       };
+
+
+       /**
+        * @param {EventTarget|Element} targetElement
+        */
+       FastClick.prototype.focus = function(targetElement) {
+               var length;
+
+               // Issue #160: on iOS 7, some input elements (e.g. date 
datetime month) throw a vague TypeError on setSelectionRange. These elements 
don't have an integer value for the selectionStart and selectionEnd properties, 
but unfortunately that can't be used for detection because accessing the 
properties also throws a TypeError. Just check the type instead. Filed as Apple 
bug #15122724.
+               if (deviceIsIOS && targetElement.setSelectionRange && 
targetElement.type.indexOf('date') !== 0 && targetElement.type !== 'time' && 
targetElement.type !== 'month') {
+                       length = targetElement.value.length;
+                       targetElement.setSelectionRange(length, length);
+               } else {
+                       targetElement.focus();
+               }
+       };
+
+
+       /**
+        * Check whether the given target element is a child of a scrollable 
layer and if so, set a flag on it.
+        *
+        * @param {EventTarget|Element} targetElement
+        */
+       FastClick.prototype.updateScrollParent = function(targetElement) {
+               var scrollParent, parentElement;
+
+               scrollParent = targetElement.fastClickScrollParent;
+
+               // Attempt to discover whether the target element is contained 
within a scrollable layer. Re-check if the
+               // target element was moved to another parent.
+               if (!scrollParent || !scrollParent.contains(targetElement)) {
+                       parentElement = targetElement;
+                       do {
+                               if (parentElement.scrollHeight > 
parentElement.offsetHeight) {
+                                       scrollParent = parentElement;
+                                       targetElement.fastClickScrollParent = 
parentElement;
+                                       break;
+                               }
+
+                               parentElement = parentElement.parentElement;
+                       } while (parentElement);
+               }
+
+               // Always update the scroll top tracker if possible.
+               if (scrollParent) {
+                       scrollParent.fastClickLastScrollTop = 
scrollParent.scrollTop;
+               }
+       };
+
+
+       /**
+        * @param {EventTarget} targetElement
+        * @returns {Element|EventTarget}
+        */
+       FastClick.prototype.getTargetElementFromEventTarget = 
function(eventTarget) {
+
+               // On some older browsers (notably Safari on iOS 4.1 - see 
issue #56) the event target may be a text node.
+               if (eventTarget.nodeType === Node.TEXT_NODE) {
+                       return eventTarget.parentNode;
+               }
+
+               return eventTarget;
+       };
+
+
+       /**
+        * On touch start, record the position and scroll offset.
+        *
+        * @param {Event} event
+        * @returns {boolean}
+        */
+       FastClick.prototype.onTouchStart = function(event) {
+               var targetElement, touch, selection;
+
+               // Ignore multiple touches, otherwise pinch-to-zoom is 
prevented if both fingers are on the FastClick element (issue #111).
+               if (event.targetTouches.length > 1) {
+                       return true;
+               }
+
+               targetElement = 
this.getTargetElementFromEventTarget(event.target);
+               touch = event.targetTouches[0];
+
+               if (deviceIsIOS) {
+
+                       // Only trusted events will deselect text on iOS (issue 
#49)
+                       selection = window.getSelection();
+                       if (selection.rangeCount && !selection.isCollapsed) {
+                               return true;
+                       }
+
+                       if (!deviceIsIOS4) {
+
+                               // Weird things happen on iOS when an alert or 
confirm dialog is opened from a click event callback (issue #23):
+                               // when the user next taps anywhere else on the 
page, new touchstart and touchend events are dispatched
+                               // with the same identifier as the touch event 
that previously triggered the click that triggered the alert.
+                               // Sadly, there is an issue on iOS 4 that 
causes some normal touch events to have the same identifier as an
+                               // immediately preceeding touch event (issue 
#52), so this fix is unavailable on that platform.
+                               // Issue 120: touch.identifier is 0 when Chrome 
dev tools 'Emulate touch events' is set with an iOS device UA string,
+                               // which causes all touch events to be ignored. 
As this block only applies to iOS, and iOS identifiers are always long,
+                               // random integers, it's safe to to continue if 
the identifier is 0 here.
+                               if (touch.identifier && touch.identifier === 
this.lastTouchIdentifier) {
+                                       event.preventDefault();
+                                       return false;
+                               }
+
+                               this.lastTouchIdentifier = touch.identifier;
+
+                               // If the target element is a child of a 
scrollable layer (using -webkit-overflow-scrolling: touch) and:
+                               // 1) the user does a fling scroll on the 
scrollable layer
+                               // 2) the user stops the fling scroll with 
another tap
+                               // then the event.target of the last 'touchend' 
event will be the element that was under the user's finger
+                               // when the fling scroll was started, causing 
FastClick to send a click event to that layer - unless a check
+                               // is made to ensure that a parent layer was 
not scrolled before sending a synthetic click (issue #42).
+                               this.updateScrollParent(targetElement);
+                       }
+               }
+
+               this.trackingClick = true;
+               this.trackingClickStart = event.timeStamp;
+               this.targetElement = targetElement;
+
+               this.touchStartX = touch.pageX;
+               this.touchStartY = touch.pageY;
+
+               // Prevent phantom clicks on fast double-tap (issue #36)
+               if ((event.timeStamp - this.lastClickTime) < this.tapDelay) {
+                       event.preventDefault();
+               }
+
+               return true;
+       };
+
+
+       /**
+        * Based on a touchmove event object, check whether the touch has moved 
past a boundary since it started.
+        *
+        * @param {Event} event
+        * @returns {boolean}
+        */
+       FastClick.prototype.touchHasMoved = function(event) {
+               var touch = event.changedTouches[0], boundary = 
this.touchBoundary;
+
+               if (Math.abs(touch.pageX - this.touchStartX) > boundary || 
Math.abs(touch.pageY - this.touchStartY) > boundary) {
+                       return true;
+               }
+
+               return false;
+       };
+
+
+       /**
+        * Update the last position.
+        *
+        * @param {Event} event
+        * @returns {boolean}
+        */
+       FastClick.prototype.onTouchMove = function(event) {
+               if (!this.trackingClick) {
+                       return true;
+               }
+
+               // If the touch has moved, cancel the click tracking
+               if (this.targetElement !== 
this.getTargetElementFromEventTarget(event.target) || 
this.touchHasMoved(event)) {
+                       this.trackingClick = false;
+                       this.targetElement = null;
+               }
+
+               return true;
+       };
+
+
+       /**
+        * Attempt to find the labelled control for the given label element.
+        *
+        * @param {EventTarget|HTMLLabelElement} labelElement
+        * @returns {Element|null}
+        */
+       FastClick.prototype.findControl = function(labelElement) {
+
+               // Fast path for newer browsers supporting the HTML5 control 
attribute
+               if (labelElement.control !== undefined) {
+                       return labelElement.control;
+               }
+
+               // All browsers under test that support touch events also 
support the HTML5 htmlFor attribute
+               if (labelElement.htmlFor) {
+                       return document.getElementById(labelElement.htmlFor);
+               }
+
+               // If no for attribute exists, attempt to retrieve the first 
labellable descendant element
+               // the list of which is defined here: 
http://www.w3.org/TR/html5/forms.html#category-label
+               return labelElement.querySelector('button, 
input:not([type=hidden]), keygen, meter, output, progress, select, textarea');
+       };
+
+
+       /**
+        * On touch end, determine whether to send a click event at once.
+        *
+        * @param {Event} event
+        * @returns {boolean}
+        */
+       FastClick.prototype.onTouchEnd = function(event) {
+               var forElement, trackingClickStart, targetTagName, 
scrollParent, touch, targetElement = this.targetElement;
+
+               if (!this.trackingClick) {
+                       return true;
+               }
+
+               // Prevent phantom clicks on fast double-tap (issue #36)
+               if ((event.timeStamp - this.lastClickTime) < this.tapDelay) {
+                       this.cancelNextClick = true;
+                       return true;
+               }
+
+               if ((event.timeStamp - this.trackingClickStart) > 
this.tapTimeout) {
+                       return true;
+               }
+
+               // Reset to prevent wrong click cancel on input (issue #156).
+               this.cancelNextClick = false;
+
+               this.lastClickTime = event.timeStamp;
+
+               trackingClickStart = this.trackingClickStart;
+               this.trackingClick = false;
+               this.trackingClickStart = 0;
+
+               // On some iOS devices, the targetElement supplied with the 
event is invalid if the layer
+               // is performing a transition or scroll, and has to be 
re-detected manually. Note that
+               // for this to function correctly, it must be called *after* 
the event target is checked!
+               // See issue #57; also filed as rdar://13048589 .
+               if (deviceIsIOSWithBadTarget) {
+                       touch = event.changedTouches[0];
+
+                       // In certain cases arguments of elementFromPoint can 
be negative, so prevent setting targetElement to null
+                       targetElement = document.elementFromPoint(touch.pageX - 
window.pageXOffset, touch.pageY - window.pageYOffset) || targetElement;
+                       targetElement.fastClickScrollParent = 
this.targetElement.fastClickScrollParent;
+               }
+
+               targetTagName = targetElement.tagName.toLowerCase();
+               if (targetTagName === 'label') {
+                       forElement = this.findControl(targetElement);
+                       if (forElement) {
+                               this.focus(targetElement);
+                               if (deviceIsAndroid) {
+                                       return false;
+                               }
+
+                               targetElement = forElement;
+                       }
+               } else if (this.needsFocus(targetElement)) {
+
+                       // Case 1: If the touch started a while ago (best guess 
is 100ms based on tests for issue #36) then focus will be triggered anyway. 
Return early and unset the target element reference so that the subsequent 
click will be allowed through.
+                       // Case 2: Without this exception for input elements 
tapped when the document is contained in an iframe, then any inputted text 
won't be visible even though the value attribute is updated as the user types 
(issue #37).
+                       if ((event.timeStamp - trackingClickStart) > 100 || 
(deviceIsIOS && window.top !== window && targetTagName === 'input')) {
+                               this.targetElement = null;
+                               return false;
+                       }
+
+                       this.focus(targetElement);
+                       this.sendClick(targetElement, event);
+
+                       // Select elements need the event to go through on iOS 
4, otherwise the selector menu won't open.
+                       // Also this breaks opening selects when VoiceOver is 
active on iOS6, iOS7 (and possibly others)
+                       if (!deviceIsIOS || targetTagName !== 'select') {
+                               this.targetElement = null;
+                               event.preventDefault();
+                       }
+
+                       return false;
+               }
+
+               if (deviceIsIOS && !deviceIsIOS4) {
+
+                       // Don't send a synthetic click event if the target 
element is contained within a parent layer that was scrolled
+                       // and this tap is being used to stop the scrolling 
(usually initiated by a fling - issue #42).
+                       scrollParent = targetElement.fastClickScrollParent;
+                       if (scrollParent && scrollParent.fastClickLastScrollTop 
!== scrollParent.scrollTop) {
+                               return true;
+                       }
+               }
+
+               // Prevent the actual click from going though - unless the 
target node is marked as requiring
+               // real clicks or if it is in the whitelist in which case only 
non-programmatic clicks are permitted.
+               if (!this.needsClick(targetElement)) {
+                       event.preventDefault();
+                       this.sendClick(targetElement, event);
+               }
+
+               return false;
+       };
+
+
+       /**
+        * On touch cancel, stop tracking the click.
+        *
+        * @returns {void}
+        */
+       FastClick.prototype.onTouchCancel = function() {
+               this.trackingClick = false;
+               this.targetElement = null;
+       };
+
+
+       /**
+        * Determine mouse events which should be permitted.
+        *
+        * @param {Event} event
+        * @returns {boolean}
+        */
+       FastClick.prototype.onMouse = function(event) {
+
+               // If a target element was never set (because a touch event was 
never fired) allow the event
+               if (!this.targetElement) {
+                       return true;
+               }
+
+               if (event.forwardedTouchEvent) {
+                       return true;
+               }
+
+               // Programmatically generated events targeting a specific 
element should be permitted
+               if (!event.cancelable) {
+                       return true;
+               }
+
+               // Derive and check the target element to see whether the mouse 
event needs to be permitted;
+               // unless explicitly enabled, prevent non-touch click events 
from triggering actions,
+               // to prevent ghost/doubleclicks.
+               if (!this.needsClick(this.targetElement) || 
this.cancelNextClick) {
+
+                       // Prevent any user-added listeners declared on 
FastClick element from being fired.
+                       if (event.stopImmediatePropagation) {
+                               event.stopImmediatePropagation();
+                       } else {
+
+                               // Part of the hack for browsers that don't 
support Event#stopImmediatePropagation (e.g. Android 2)
+                               event.propagationStopped = true;
+                       }
+
+                       // Cancel the event
+                       event.stopPropagation();
+                       event.preventDefault();
+
+                       return false;
+               }
+
+               // If the mouse event is permitted, return true for the action 
to go through.
+               return true;
+       };
+
+
+       /**
+        * On actual clicks, determine whether this is a touch-generated click, 
a click action occurring
+        * naturally after a delay after a touch (which needs to be cancelled 
to avoid duplication), or
+        * an actual click which should be permitted.
+        *
+        * @param {Event} event
+        * @returns {boolean}
+        */
+       FastClick.prototype.onClick = function(event) {
+               var permitted;
+
+               // It's possible for another FastClick-like library delivered 
with third-party code to fire a click event before FastClick does (issue #44). 
In that case, set the click-tracking flag back to false and return early. This 
will cause onTouchEnd to return early.
+               if (this.trackingClick) {
+                       this.targetElement = null;
+                       this.trackingClick = false;
+                       return true;
+               }
+
+               // Very odd behaviour on iOS (issue #18): if a submit element 
is present inside a form and the user hits enter in the iOS simulator or clicks 
the Go button on the pop-up OS keyboard the a kind of 'fake' click event will 
be triggered with the submit-type input element as the target.
+               if (event.target.type === 'submit' && event.detail === 0) {
+                       return true;
+               }
+
+               permitted = this.onMouse(event);
+
+               // Only unset targetElement if the click is not permitted. This 
will ensure that the check for !targetElement in onMouse fails and the 
browser's click doesn't go through.
+               if (!permitted) {
+                       this.targetElement = null;
+               }
+
+               // If clicks are permitted, return true for the action to go 
through.
+               return permitted;
+       };
+
+
+       /**
+        * Remove all FastClick's event listeners.
+        *
+        * @returns {void}
+        */
+       FastClick.prototype.destroy = function() {
+               var layer = this.layer;
+
+               if (deviceIsAndroid) {
+                       layer.removeEventListener('mouseover', this.onMouse, 
true);
+                       layer.removeEventListener('mousedown', this.onMouse, 
true);
+                       layer.removeEventListener('mouseup', this.onMouse, 
true);
+               }
+
+               layer.removeEventListener('click', this.onClick, true);
+               layer.removeEventListener('touchstart', this.onTouchStart, 
false);
+               layer.removeEventListener('touchmove', this.onTouchMove, false);
+               layer.removeEventListener('touchend', this.onTouchEnd, false);
+               layer.removeEventListener('touchcancel', this.onTouchCancel, 
false);
+       };
+
+
+       /**
+        * Check whether FastClick is needed.
+        *
+        * @param {Element} layer The layer to listen on
+        */
+       FastClick.notNeeded = function(layer) {
+               var metaViewport;
+               var chromeVersion;
+               var blackberryVersion;
+               var firefoxVersion;
+
+               // Devices that don't support touch don't need FastClick
+               if (typeof window.ontouchstart === 'undefined') {
+                       return true;
+               }
+
+               // Chrome version - zero for other browsers
+               chromeVersion = +(/Chrome\/([0-9]+)/.exec(navigator.userAgent) 
|| [,0])[1];
+
+               if (chromeVersion) {
+
+                       if (deviceIsAndroid) {
+                               metaViewport = 
document.querySelector('meta[name=viewport]');
+
+                               if (metaViewport) {
+                                       // Chrome on Android with 
user-scalable="no" doesn't need FastClick (issue #89)
+                                       if 
(metaViewport.content.indexOf('user-scalable=no') !== -1) {
+                                               return true;
+                                       }
+                                       // Chrome 32 and above with 
width=device-width or less don't need FastClick
+                                       if (chromeVersion > 31 && 
document.documentElement.scrollWidth <= window.outerWidth) {
+                                               return true;
+                                       }
+                               }
+
+                       // Chrome desktop doesn't need FastClick (issue #15)
+                       } else {
+                               return true;
+                       }
+               }
+
+               if (deviceIsBlackBerry10) {
+                       blackberryVersion = 
navigator.userAgent.match(/Version\/([0-9]*)\.([0-9]*)/);
+
+                       // BlackBerry 10.3+ does not require Fastclick library.
+                       // https://github.com/ftlabs/fastclick/issues/251
+                       if (blackberryVersion[1] >= 10 && blackberryVersion[2] 
>= 3) {
+                               metaViewport = 
document.querySelector('meta[name=viewport]');
+
+                               if (metaViewport) {
+                                       // user-scalable=no eliminates click 
delay.
+                                       if 
(metaViewport.content.indexOf('user-scalable=no') !== -1) {
+                                               return true;
+                                       }
+                                       // width=device-width (or less than 
device-width) eliminates click delay.
+                                       if 
(document.documentElement.scrollWidth <= window.outerWidth) {
+                                               return true;
+                                       }
+                               }
+                       }
+               }
+
+               // IE10 with -ms-touch-action: none or manipulation, which 
disables double-tap-to-zoom (issue #97)
+               if (layer.style.msTouchAction === 'none' || 
layer.style.touchAction === 'manipulation') {
+                       return true;
+               }
+
+               // Firefox version - zero for other browsers
+               firefoxVersion = 
+(/Firefox\/([0-9]+)/.exec(navigator.userAgent) || [,0])[1];
+
+               if (firefoxVersion >= 27) {
+                       // Firefox 27+ does not have tap delay if the content 
is not zoomable - https://bugzilla.mozilla.org/show_bug.cgi?id=922896
+
+                       metaViewport = 
document.querySelector('meta[name=viewport]');
+                       if (metaViewport && 
(metaViewport.content.indexOf('user-scalable=no') !== -1 || 
document.documentElement.scrollWidth <= window.outerWidth)) {
+                               return true;
+                       }
+               }
+
+               // IE11: prefixed -ms-touch-action is no longer supported and 
it's recomended to use non-prefixed version
+               // 
http://msdn.microsoft.com/en-us/library/windows/apps/Hh767313.aspx
+               if (layer.style.touchAction === 'none' || 
layer.style.touchAction === 'manipulation') {
+                       return true;
+               }
+
+               return false;
+       };
+
+
+       /**
+        * Factory method for creating a FastClick object
+        *
+        * @param {Element} layer The layer to listen on
+        * @param {Object} [options={}] The options to override the defaults
+        */
+       FastClick.attach = function(layer, options) {
+               return new FastClick(layer, options);
+       };
+
+
+       if (typeof define === 'function' && typeof define.amd === 'object' && 
define.amd) {
+
+               // AMD. Register as an anonymous module.
+               define(function() {
+                       return FastClick;
+               });
+       } else if (typeof module !== 'undefined' && module.exports) {
+               module.exports = FastClick.attach;
+               module.exports.FastClick = FastClick;
+       } else {
+               window.FastClick = FastClick;
+       }
+}());

http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/32b52cb9/modules/webconfig/nodejs/node_modules/admin-lte/plugins/flot/jquery.flot.categories.min.js
----------------------------------------------------------------------
diff --git 
a/modules/webconfig/nodejs/node_modules/admin-lte/plugins/flot/jquery.flot.categories.min.js
 
b/modules/webconfig/nodejs/node_modules/admin-lte/plugins/flot/jquery.flot.categories.min.js
new file mode 100644
index 0000000..552dd90
--- /dev/null
+++ 
b/modules/webconfig/nodejs/node_modules/admin-lte/plugins/flot/jquery.flot.categories.min.js
@@ -0,0 +1 @@
+(function($){var 
options={xaxis:{categories:null},yaxis:{categories:null}};function 
processRawData(plot,series,data,datapoints){var 
xCategories=series.xaxis.options.mode=="categories",yCategories=series.yaxis.options.mode=="categories";if(!(xCategories||yCategories))return;var
 format=datapoints.format;if(!format){var 
s=series;format=[];format.push({x:true,number:true,required:true});format.push({y:true,number:true,required:true});if(s.bars.show||s.lines.show&&s.lines.fill){var
 
autoscale=!!(s.bars.show&&s.bars.zero||s.lines.show&&s.lines.zero);format.push({y:true,number:true,required:false,defaultValue:0,autoscale:autoscale});if(s.bars.horizontal){delete
 
format[format.length-1].y;format[format.length-1].x=true}}datapoints.format=format}for(var
 
m=0;m<format.length;++m){if(format[m].x&&xCategories)format[m].number=false;if(format[m].y&&yCategories)format[m].number=false}}function
 getNextIndex(categories){var index=-1;for(var v in 
categories)if(categories[v]>index)index=categories[v];re
 turn index+1}function categoriesTickGenerator(axis){var res=[];for(var label 
in axis.categories){var 
v=axis.categories[label];if(v>=axis.min&&v<=axis.max)res.push([v,label])}res.sort(function(a,b){return
 a[0]-b[0]});return res}function 
setupCategoriesForAxis(series,axis,datapoints){if(series[axis].options.mode!="categories")return;if(!series[axis].categories){var
 c={},o=series[axis].options.categories||{};if($.isArray(o)){for(var 
i=0;i<o.length;++i)c[o[i]]=i}else{for(var v in 
o)c[v]=o[v]}series[axis].categories=c}if(!series[axis].options.ticks)series[axis].options.ticks=categoriesTickGenerator;transformPointsOnAxis(datapoints,axis,series[axis].categories)}function
 transformPointsOnAxis(datapoints,axis,categories){var 
points=datapoints.points,ps=datapoints.pointsize,format=datapoints.format,formatColumn=axis.charAt(0),index=getNextIndex(categories);for(var
 i=0;i<points.length;i+=ps){if(points[i]==null)continue;for(var 
m=0;m<ps;++m){var val=points[i+m];if(val==null||!format[m][formatC
 olumn])continue;if(!(val in 
categories)){categories[val]=index;++index}points[i+m]=categories[val]}}}function
 
processDatapoints(plot,series,datapoints){setupCategoriesForAxis(series,"xaxis",datapoints);setupCategoriesForAxis(series,"yaxis",datapoints)}function
 
init(plot){plot.hooks.processRawData.push(processRawData);plot.hooks.processDatapoints.push(processDatapoints)}$.plot.plugins.push({init:init,options:options,name:"categories",version:"1.0"})})(jQuery);
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/32b52cb9/modules/webconfig/nodejs/node_modules/admin-lte/plugins/flot/jquery.flot.crosshair.min.js
----------------------------------------------------------------------
diff --git 
a/modules/webconfig/nodejs/node_modules/admin-lte/plugins/flot/jquery.flot.crosshair.min.js
 
b/modules/webconfig/nodejs/node_modules/admin-lte/plugins/flot/jquery.flot.crosshair.min.js
new file mode 100644
index 0000000..f97ce65
--- /dev/null
+++ 
b/modules/webconfig/nodejs/node_modules/admin-lte/plugins/flot/jquery.flot.crosshair.min.js
@@ -0,0 +1 @@
+(function($){var options={crosshair:{mode:null,color:"rgba(170, 0, 0, 
0.80)",lineWidth:1}};function init(plot){var 
crosshair={x:-1,y:-1,locked:false};plot.setCrosshair=function 
setCrosshair(pos){if(!pos)crosshair.x=-1;else{var 
o=plot.p2c(pos);crosshair.x=Math.max(0,Math.min(o.left,plot.width()));crosshair.y=Math.max(0,Math.min(o.top,plot.height()))}plot.triggerRedrawOverlay()};plot.clearCrosshair=plot.setCrosshair;plot.lockCrosshair=function
 
lockCrosshair(pos){if(pos)plot.setCrosshair(pos);crosshair.locked=true};plot.unlockCrosshair=function
 unlockCrosshair(){crosshair.locked=false};function 
onMouseOut(e){if(crosshair.locked)return;if(crosshair.x!=-1){crosshair.x=-1;plot.triggerRedrawOverlay()}}function
 
onMouseMove(e){if(crosshair.locked)return;if(plot.getSelection&&plot.getSelection()){crosshair.x=-1;return}var
 
offset=plot.offset();crosshair.x=Math.max(0,Math.min(e.pageX-offset.left,plot.width()));crosshair.y=Math.max(0,Math.min(e.pageY-offset.top,plot.height()));plot.triggerRedraw
 
Overlay()}plot.hooks.bindEvents.push(function(plot,eventHolder){if(!plot.getOptions().crosshair.mode)return;eventHolder.mouseout(onMouseOut);eventHolder.mousemove(onMouseMove)});plot.hooks.drawOverlay.push(function(plot,ctx){var
 c=plot.getOptions().crosshair;if(!c.mode)return;var 
plotOffset=plot.getPlotOffset();ctx.save();ctx.translate(plotOffset.left,plotOffset.top);if(crosshair.x!=-1){var
 
adj=plot.getOptions().crosshair.lineWidth%2===0?0:.5;ctx.strokeStyle=c.color;ctx.lineWidth=c.lineWidth;ctx.lineJoin="round";ctx.beginPath();if(c.mode.indexOf("x")!=-1){var
 
drawX=Math.round(crosshair.x)+adj;ctx.moveTo(drawX,0);ctx.lineTo(drawX,plot.height())}if(c.mode.indexOf("y")!=-1){var
 
drawY=Math.round(crosshair.y)+adj;ctx.moveTo(0,drawY);ctx.lineTo(plot.width(),drawY)}ctx.stroke()}ctx.restore()});plot.hooks.shutdown.push(function(plot,eventHolder){eventHolder.unbind("mouseout",onMouseOut);eventHolder.unbind("mousemove",onMouseMove)})}$.plot.plugins.push({init:init,options:options,name:"crossh
 air",version:"1.0"})})(jQuery);
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/32b52cb9/modules/webconfig/nodejs/node_modules/admin-lte/plugins/flot/jquery.flot.symbol.js
----------------------------------------------------------------------
diff --git 
a/modules/webconfig/nodejs/node_modules/admin-lte/plugins/flot/jquery.flot.symbol.js
 
b/modules/webconfig/nodejs/node_modules/admin-lte/plugins/flot/jquery.flot.symbol.js
new file mode 100644
index 0000000..cc181ff
--- /dev/null
+++ 
b/modules/webconfig/nodejs/node_modules/admin-lte/plugins/flot/jquery.flot.symbol.js
@@ -0,0 +1,71 @@
+/* Flot plugin that adds some extra symbols for plotting points.
+
+Copyright (c) 2007-2013 IOLA and Ole Laursen.
+Licensed under the MIT license.
+
+The symbols are accessed as strings through the standard symbol options:
+
+       series: {
+               points: {
+                       symbol: "square" // or "diamond", "triangle", "cross"
+               }
+       }
+
+*/
+
+(function ($) {
+    function processRawData(plot, series, datapoints) {
+        // we normalize the area of each symbol so it is approximately the
+        // same as a circle of the given radius
+
+        var handlers = {
+            square: function (ctx, x, y, radius, shadow) {
+                // pi * r^2 = (2s)^2  =>  s = r * sqrt(pi)/2
+                var size = radius * Math.sqrt(Math.PI) / 2;
+                ctx.rect(x - size, y - size, size + size, size + size);
+            },
+            diamond: function (ctx, x, y, radius, shadow) {
+                // pi * r^2 = 2s^2  =>  s = r * sqrt(pi/2)
+                var size = radius * Math.sqrt(Math.PI / 2);
+                ctx.moveTo(x - size, y);
+                ctx.lineTo(x, y - size);
+                ctx.lineTo(x + size, y);
+                ctx.lineTo(x, y + size);
+                ctx.lineTo(x - size, y);
+            },
+            triangle: function (ctx, x, y, radius, shadow) {
+                // pi * r^2 = 1/2 * s^2 * sin (pi / 3)  =>  s = r * sqrt(2 * 
pi / sin(pi / 3))
+                var size = radius * Math.sqrt(2 * Math.PI / Math.sin(Math.PI / 
3));
+                var height = size * Math.sin(Math.PI / 3);
+                ctx.moveTo(x - size/2, y + height/2);
+                ctx.lineTo(x + size/2, y + height/2);
+                if (!shadow) {
+                    ctx.lineTo(x, y - height/2);
+                    ctx.lineTo(x - size/2, y + height/2);
+                }
+            },
+            cross: function (ctx, x, y, radius, shadow) {
+                // pi * r^2 = (2s)^2  =>  s = r * sqrt(pi)/2
+                var size = radius * Math.sqrt(Math.PI) / 2;
+                ctx.moveTo(x - size, y - size);
+                ctx.lineTo(x + size, y + size);
+                ctx.moveTo(x - size, y + size);
+                ctx.lineTo(x + size, y - size);
+            }
+        };
+
+        var s = series.points.symbol;
+        if (handlers[s])
+            series.points.symbol = handlers[s];
+    }
+    
+    function init(plot) {
+        plot.hooks.processDatapoints.push(processRawData);
+    }
+    
+    $.plot.plugins.push({
+        init: init,
+        name: 'symbols',
+        version: '1.0'
+    });
+})(jQuery);

http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/32b52cb9/modules/webconfig/nodejs/node_modules/admin-lte/plugins/flot/jquery.flot.symbol.min.js
----------------------------------------------------------------------
diff --git 
a/modules/webconfig/nodejs/node_modules/admin-lte/plugins/flot/jquery.flot.symbol.min.js
 
b/modules/webconfig/nodejs/node_modules/admin-lte/plugins/flot/jquery.flot.symbol.min.js
new file mode 100644
index 0000000..3eab213
--- /dev/null
+++ 
b/modules/webconfig/nodejs/node_modules/admin-lte/plugins/flot/jquery.flot.symbol.min.js
@@ -0,0 +1 @@
+(function($){function processRawData(plot,series,datapoints){var 
handlers={square:function(ctx,x,y,radius,shadow){var 
size=radius*Math.sqrt(Math.PI)/2;ctx.rect(x-size,y-size,size+size,size+size)},diamond:function(ctx,x,y,radius,shadow){var
 
size=radius*Math.sqrt(Math.PI/2);ctx.moveTo(x-size,y);ctx.lineTo(x,y-size);ctx.lineTo(x+size,y);ctx.lineTo(x,y+size);ctx.lineTo(x-size,y)},triangle:function(ctx,x,y,radius,shadow){var
 size=radius*Math.sqrt(2*Math.PI/Math.sin(Math.PI/3));var 
height=size*Math.sin(Math.PI/3);ctx.moveTo(x-size/2,y+height/2);ctx.lineTo(x+size/2,y+height/2);if(!shadow){ctx.lineTo(x,y-height/2);ctx.lineTo(x-size/2,y+height/2)}},cross:function(ctx,x,y,radius,shadow){var
 
size=radius*Math.sqrt(Math.PI)/2;ctx.moveTo(x-size,y-size);ctx.lineTo(x+size,y+size);ctx.moveTo(x-size,y+size);ctx.lineTo(x+size,y-size)}};var
 
s=series.points.symbol;if(handlers[s])series.points.symbol=handlers[s]}function 
init(plot){plot.hooks.processDatapoints.push(processRawData)}$.plot.plugins.push({in
 it:init,name:"symbols",version:"1.0"})})(jQuery);
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/32b52cb9/modules/webconfig/nodejs/node_modules/admin-lte/plugins/fullcalendar/fullcalendar.css
----------------------------------------------------------------------
diff --git 
a/modules/webconfig/nodejs/node_modules/admin-lte/plugins/fullcalendar/fullcalendar.css
 
b/modules/webconfig/nodejs/node_modules/admin-lte/plugins/fullcalendar/fullcalendar.css
new file mode 100644
index 0000000..624f2c4
--- /dev/null
+++ 
b/modules/webconfig/nodejs/node_modules/admin-lte/plugins/fullcalendar/fullcalendar.css
@@ -0,0 +1,977 @@
+/*!
+ * FullCalendar v2.2.5 Stylesheet
+ * Docs & License: http://arshaw.com/fullcalendar/
+ * (c) 2013 Adam Shaw
+ */
+
+
+.fc {
+       direction: ltr;
+       text-align: left;
+}
+
+.fc-rtl {
+       text-align: right;
+}
+
+body .fc { /* extra precedence to overcome jqui */
+       font-size: 1em;
+}
+
+
+/* Colors
+--------------------------------------------------------------------------------------------------*/
+
+.fc-unthemed th,
+.fc-unthemed td,
+.fc-unthemed hr,
+.fc-unthemed thead,
+.fc-unthemed tbody,
+.fc-unthemed .fc-row,
+.fc-unthemed .fc-popover {
+       border-color: #ddd;
+}
+
+.fc-unthemed .fc-popover {
+       background-color: #fff;
+}
+
+.fc-unthemed hr,
+.fc-unthemed .fc-popover .fc-header {
+       background: #eee;
+}
+
+.fc-unthemed .fc-popover .fc-header .fc-close {
+       color: #666;
+}
+
+.fc-unthemed .fc-today {
+       background: #fcf8e3;
+}
+
+.fc-highlight { /* when user is selecting cells */
+       background: #bce8f1;
+       opacity: .3;
+       filter: alpha(opacity=30); /* for IE */
+}
+
+.fc-bgevent { /* default look for background events */
+       background: rgb(143, 223, 130);
+       opacity: .3;
+       filter: alpha(opacity=30); /* for IE */
+}
+
+.fc-nonbusiness { /* default look for non-business-hours areas */
+       /* will inherit .fc-bgevent's styles */
+       background: #ccc;
+}
+
+
+/* Icons (inline elements with styled text that mock arrow icons)
+--------------------------------------------------------------------------------------------------*/
+
+.fc-icon {
+       display: inline-block;
+       font-size: 2em;
+       line-height: .5em;
+       height: .5em; /* will make the total height 1em */
+       font-family: "Courier New", Courier, monospace;
+}
+
+.fc-icon-left-single-arrow:after {
+       content: "\02039";
+       font-weight: bold;
+}
+
+.fc-icon-right-single-arrow:after {
+       content: "\0203A";
+       font-weight: bold;
+}
+
+.fc-icon-left-double-arrow:after {
+       content: "\000AB";
+}
+
+.fc-icon-right-double-arrow:after {
+       content: "\000BB";
+}
+
+.fc-icon-x:after {
+       content: "\000D7";
+}
+
+
+/* Buttons (styled <button> tags, normalized to work cross-browser)
+--------------------------------------------------------------------------------------------------*/
+
+.fc button {
+       /* force height to include the border and padding */
+       -moz-box-sizing: border-box;
+       -webkit-box-sizing: border-box;
+       box-sizing: border-box;
+
+       /* dimensions */
+       margin: 0;
+       height: 2.1em;
+       padding: 0 .6em;
+
+       /* text & cursor */
+       font-size: 1em; /* normalize */
+       white-space: nowrap;
+       cursor: pointer;
+}
+
+/* Firefox has an annoying inner border */
+.fc button::-moz-focus-inner { margin: 0; padding: 0; }
+       
+.fc-state-default { /* non-theme */
+       border: 1px solid;
+}
+
+.fc-state-default.fc-corner-left { /* non-theme */
+       border-top-left-radius: 4px;
+       border-bottom-left-radius: 4px;
+}
+
+.fc-state-default.fc-corner-right { /* non-theme */
+       border-top-right-radius: 4px;
+       border-bottom-right-radius: 4px;
+}
+
+/* icons in buttons */
+
+.fc button .fc-icon { /* non-theme */
+       position: relative;
+       top: .05em; /* seems to be a good adjustment across browsers */
+       margin: 0 .1em;
+}
+       
+/*
+  button states
+  borrowed from twitter bootstrap (http://twitter.github.com/bootstrap/)
+*/
+
+.fc-state-default {
+       background-color: #f5f5f5;
+       background-image: -moz-linear-gradient(top, #ffffff, #e6e6e6);
+       background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), 
to(#e6e6e6));
+       background-image: -webkit-linear-gradient(top, #ffffff, #e6e6e6);
+       background-image: -o-linear-gradient(top, #ffffff, #e6e6e6);
+       background-image: linear-gradient(to bottom, #ffffff, #e6e6e6);
+       background-repeat: repeat-x;
+       border-color: #e6e6e6 #e6e6e6 #bfbfbf;
+       border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
+       color: #333;
+       text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
+       box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 
0, 0, 0.05);
+}
+
+.fc-state-hover,
+.fc-state-down,
+.fc-state-active,
+.fc-state-disabled {
+       color: #333333;
+       background-color: #e6e6e6;
+}
+
+.fc-state-hover {
+       color: #333333;
+       text-decoration: none;
+       background-position: 0 -15px;
+       -webkit-transition: background-position 0.1s linear;
+          -moz-transition: background-position 0.1s linear;
+            -o-transition: background-position 0.1s linear;
+               transition: background-position 0.1s linear;
+}
+
+.fc-state-down,
+.fc-state-active {
+       background-color: #cccccc;
+       background-image: none;
+       box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 
0, 0.05);
+}
+
+.fc-state-disabled {
+       cursor: default;
+       background-image: none;
+       opacity: 0.65;
+       filter: alpha(opacity=65);
+       box-shadow: none;
+}
+
+
+/* Buttons Groups
+--------------------------------------------------------------------------------------------------*/
+
+.fc-button-group {
+       display: inline-block;
+}
+
+/*
+every button that is not first in a button group should scootch over one pixel 
and cover the
+previous button's border...
+*/
+
+.fc .fc-button-group > * { /* extra precedence b/c buttons have margin set to 
zero */
+       float: left;
+       margin: 0 0 0 -1px;
+}
+
+.fc .fc-button-group > :first-child { /* same */
+       margin-left: 0;
+}
+
+
+/* Popover
+--------------------------------------------------------------------------------------------------*/
+
+.fc-popover {
+       position: absolute;
+       box-shadow: 0 2px 6px rgba(0,0,0,.15);
+}
+
+.fc-popover .fc-header {
+       padding: 2px 4px;
+}
+
+.fc-popover .fc-header .fc-title {
+       margin: 0 2px;
+}
+
+.fc-popover .fc-header .fc-close {
+       cursor: pointer;
+}
+
+.fc-ltr .fc-popover .fc-header .fc-title,
+.fc-rtl .fc-popover .fc-header .fc-close {
+       float: left;
+}
+
+.fc-rtl .fc-popover .fc-header .fc-title,
+.fc-ltr .fc-popover .fc-header .fc-close {
+       float: right;
+}
+
+/* unthemed */
+
+.fc-unthemed .fc-popover {
+       border-width: 1px;
+       border-style: solid;
+}
+
+.fc-unthemed .fc-popover .fc-header .fc-close {
+       font-size: 25px;
+       margin-top: 4px;
+}
+
+/* jqui themed */
+
+.fc-popover > .ui-widget-header + .ui-widget-content {
+       border-top: 0; /* where they meet, let the header have the border */
+}
+
+
+/* Misc Reusable Components
+--------------------------------------------------------------------------------------------------*/
+
+.fc hr {
+       height: 0;
+       margin: 0;
+       padding: 0 0 2px; /* height is unreliable across browsers, so use 
padding */
+       border-style: solid;
+       border-width: 1px 0;
+}
+
+.fc-clear {
+       clear: both;
+}
+
+.fc-bg,
+.fc-bgevent-skeleton,
+.fc-highlight-skeleton,
+.fc-helper-skeleton {
+       /* these element should always cling to top-left/right corners */
+       position: absolute;
+       top: 0;
+       left: 0;
+       right: 0;
+}
+
+.fc-bg {
+       bottom: 0; /* strech bg to bottom edge */
+}
+
+.fc-bg table {
+       height: 100%; /* strech bg to bottom edge */
+}
+
+
+/* Tables
+--------------------------------------------------------------------------------------------------*/
+
+.fc table {
+       width: 100%;
+       table-layout: fixed;
+       border-collapse: collapse;
+       border-spacing: 0;
+       font-size: 1em; /* normalize cross-browser */
+}
+
+.fc th {
+       text-align: center;
+}
+
+.fc th,
+.fc td {
+       border-style: solid;
+       border-width: 1px;
+       padding: 0;
+       vertical-align: top;
+}
+
+.fc td.fc-today {
+       border-style: double; /* overcome neighboring borders */
+}
+
+
+/* Fake Table Rows
+--------------------------------------------------------------------------------------------------*/
+
+.fc .fc-row { /* extra precedence to overcome themes w/ .ui-widget-content 
forcing a 1px border */
+       /* no visible border by default. but make available if need be 
(scrollbar width compensation) */
+       border-style: solid;
+       border-width: 0;
+}
+
+.fc-row table {
+       /* don't put left/right border on anything within a fake row.
+          the outer tbody will worry about this */
+       border-left: 0 hidden transparent;
+       border-right: 0 hidden transparent;
+
+       /* no bottom borders on rows */
+       border-bottom: 0 hidden transparent; 
+}
+
+.fc-row:first-child table {
+       border-top: 0 hidden transparent; /* no top border on first row */
+}
+
+
+/* Day Row (used within the header and the DayGrid)
+--------------------------------------------------------------------------------------------------*/
+
+.fc-row {
+       position: relative;
+}
+
+.fc-row .fc-bg {
+       z-index: 1;
+}
+
+/* highlighting cells & background event skeleton */
+
+.fc-row .fc-bgevent-skeleton,
+.fc-row .fc-highlight-skeleton {
+       bottom: 0; /* stretch skeleton to bottom of row */
+}
+
+.fc-row .fc-bgevent-skeleton table,
+.fc-row .fc-highlight-skeleton table {
+       height: 100%; /* stretch skeleton to bottom of row */
+}
+
+.fc-row .fc-highlight-skeleton td,
+.fc-row .fc-bgevent-skeleton td {
+       border-color: transparent;
+}
+
+.fc-row .fc-bgevent-skeleton {
+       z-index: 2;
+
+}
+
+.fc-row .fc-highlight-skeleton {
+       z-index: 3;
+}
+
+/*
+row content (which contains day/week numbers and events) as well as "helper" 
(which contains
+temporary rendered events).
+*/
+
+.fc-row .fc-content-skeleton {
+       position: relative;
+       z-index: 4;
+       padding-bottom: 2px; /* matches the space above the events */
+}
+
+.fc-row .fc-helper-skeleton {
+       z-index: 5;
+}
+
+.fc-row .fc-content-skeleton td,
+.fc-row .fc-helper-skeleton td {
+       /* see-through to the background below */
+       background: none; /* in case <td>s are globally styled */
+       border-color: transparent;
+
+       /* don't put a border between events and/or the day number */
+       border-bottom: 0;
+}
+
+.fc-row .fc-content-skeleton tbody td, /* cells with events inside (so NOT the 
day number cell) */
+.fc-row .fc-helper-skeleton tbody td {
+       /* don't put a border between event cells */
+       border-top: 0;
+}
+
+
+/* Scrolling Container
+--------------------------------------------------------------------------------------------------*/
+
+.fc-scroller { /* this class goes on elements for guaranteed vertical 
scrollbars */
+       overflow-y: scroll;
+       overflow-x: hidden;
+}
+
+.fc-scroller > * { /* we expect an immediate inner element */
+       position: relative; /* re-scope all positions */
+       width: 100%; /* hack to force re-sizing this inner element when 
scrollbars appear/disappear */
+       overflow: hidden; /* don't let negative margins or absolute positioning 
create further scroll */
+}
+
+
+/* Global Event Styles
+--------------------------------------------------------------------------------------------------*/
+
+.fc-event {
+       position: relative; /* for resize handle and other inner positioning */
+       display: block; /* make the <a> tag block */
+       font-size: .85em;
+       line-height: 1.3;
+       border-radius: 3px;
+       border: 1px solid #3a87ad; /* default BORDER color */
+       background-color: #3a87ad; /* default BACKGROUND color */
+       font-weight: normal; /* undo jqui's ui-widget-header bold */
+}
+
+/* overpower some of bootstrap's and jqui's styles on <a> tags */
+.fc-event,
+.fc-event:hover,
+.ui-widget .fc-event {
+       color: #fff; /* default TEXT color */
+       text-decoration: none; /* if <a> has an href */
+}
+
+.fc-event[href],
+.fc-event.fc-draggable {
+       cursor: pointer; /* give events with links and draggable events a hand 
mouse pointer */
+}
+
+.fc-not-allowed, /* causes a "warning" cursor. applied on body */
+.fc-not-allowed .fc-event { /* to override an event's custom cursor */
+       cursor: not-allowed;
+}
+
+
+/* DayGrid events
+----------------------------------------------------------------------------------------------------
+We use the full "fc-day-grid-event" class instead of using descendants because 
the event won't
+be a descendant of the grid when it is being dragged.
+*/
+
+.fc-day-grid-event {
+       margin: 1px 2px 0; /* spacing between events and edges */
+       padding: 0 1px;
+}
+
+/* events that are continuing to/from another week. kill rounded corners and 
butt up against edge */
+
+.fc-ltr .fc-day-grid-event.fc-not-start,
+.fc-rtl .fc-day-grid-event.fc-not-end {
+       margin-left: 0;
+       border-left-width: 0;
+       padding-left: 1px; /* replace the border with padding */
+       border-top-left-radius: 0;
+       border-bottom-left-radius: 0;
+}
+
+.fc-ltr .fc-day-grid-event.fc-not-end,
+.fc-rtl .fc-day-grid-event.fc-not-start {
+       margin-right: 0;
+       border-right-width: 0;
+       padding-right: 1px; /* replace the border with padding */
+       border-top-right-radius: 0;
+       border-bottom-right-radius: 0;
+}
+
+.fc-day-grid-event > .fc-content { /* force events to be one-line tall */
+       white-space: nowrap;
+       overflow: hidden;
+}
+
+.fc-day-grid-event .fc-time {
+       font-weight: bold;
+}
+
+/* resize handle (outside of fc-content, so can go outside of bounds) */
+
+.fc-day-grid-event .fc-resizer {
+       position: absolute;
+       top: 0;
+       bottom: 0;
+       width: 7px;
+}
+
+.fc-ltr .fc-day-grid-event .fc-resizer {
+       right: -3px;
+       cursor: e-resize;
+}
+
+.fc-rtl .fc-day-grid-event .fc-resizer {
+       left: -3px;
+       cursor: w-resize;
+}
+
+
+/* Event Limiting
+--------------------------------------------------------------------------------------------------*/
+
+/* "more" link that represents hidden events */
+
+a.fc-more {
+       margin: 1px 3px;
+       font-size: .85em;
+       cursor: pointer;
+       text-decoration: none;
+}
+
+a.fc-more:hover {
+       text-decoration: underline;
+}
+
+.fc-limited { /* rows and cells that are hidden because of a "more" link */
+       display: none;
+}
+
+/* popover that appears when "more" link is clicked */
+
+.fc-day-grid .fc-row {
+       z-index: 1; /* make the "more" popover one higher than this */
+}
+
+.fc-more-popover {
+       z-index: 2;
+       width: 220px;
+}
+
+.fc-more-popover .fc-event-container {
+       padding: 10px;
+}
+
+/* Toolbar
+--------------------------------------------------------------------------------------------------*/
+
+.fc-toolbar {
+       text-align: center;
+       margin-bottom: 1em;
+}
+
+.fc-toolbar .fc-left {
+       float: left;
+}
+
+.fc-toolbar .fc-right {
+       float: right;
+}
+
+.fc-toolbar .fc-center {
+       display: inline-block;
+}
+
+/* the things within each left/right/center section */
+.fc .fc-toolbar > * > * { /* extra precedence to override button border 
margins */
+       float: left;
+       margin-left: .75em;
+}
+
+/* the first thing within each left/center/right section */
+.fc .fc-toolbar > * > :first-child { /* extra precedence to override button 
border margins */
+       margin-left: 0;
+}
+       
+/* title text */
+
+.fc-toolbar h2 {
+       margin: 0;
+}
+
+/* button layering (for border precedence) */
+
+.fc-toolbar button {
+       position: relative;
+}
+
+.fc-toolbar .fc-state-hover,
+.fc-toolbar .ui-state-hover {
+       z-index: 2;
+}
+       
+.fc-toolbar .fc-state-down {
+       z-index: 3;
+}
+
+.fc-toolbar .fc-state-active,
+.fc-toolbar .ui-state-active {
+       z-index: 4;
+}
+
+.fc-toolbar button:focus {
+       z-index: 5;
+}
+
+
+/* View Structure
+--------------------------------------------------------------------------------------------------*/
+
+/* undo twitter bootstrap's box-sizing rules. normalizes positioning 
techniques */
+/* don't do this for the toolbar because we'll want bootstrap to style those 
buttons as some pt */
+.fc-view-container *,
+.fc-view-container *:before,
+.fc-view-container *:after {
+       -webkit-box-sizing: content-box;
+          -moz-box-sizing: content-box;
+               box-sizing: content-box;
+}
+
+.fc-view, /* scope positioning and z-index's for everything within the view */
+.fc-view > table { /* so dragged elements can be above the view's main element 
*/
+       position: relative;
+       z-index: 1;
+}
+
+/* BasicView
+--------------------------------------------------------------------------------------------------*/
+
+/* day row structure */
+
+.fc-basicWeek-view .fc-content-skeleton,
+.fc-basicDay-view .fc-content-skeleton {
+       /* we are sure there are no day numbers in these views, so... */
+       padding-top: 1px; /* add a pixel to make sure there are 2px padding 
above events */
+       padding-bottom: 1em; /* ensure a space at bottom of cell for user 
selecting/clicking */
+}
+
+.fc-basic-view tbody .fc-row {
+       min-height: 4em; /* ensure that all rows are at least this tall */
+}
+
+/* a "rigid" row will take up a constant amount of height because 
content-skeleton is absolute */
+
+.fc-row.fc-rigid {
+       overflow: hidden;
+}
+
+.fc-row.fc-rigid .fc-content-skeleton {
+       position: absolute;
+       top: 0;
+       left: 0;
+       right: 0;
+}
+
+/* week and day number styling */
+
+.fc-basic-view .fc-week-number,
+.fc-basic-view .fc-day-number {
+       padding: 0 2px;
+}
+
+.fc-basic-view td.fc-week-number span,
+.fc-basic-view td.fc-day-number {
+       padding-top: 2px;
+       padding-bottom: 2px;
+}
+
+.fc-basic-view .fc-week-number {
+       text-align: center;
+}
+
+.fc-basic-view .fc-week-number span {
+       /* work around the way we do column resizing and ensure a minimum width 
*/
+       display: inline-block;
+       min-width: 1.25em;
+}
+
+.fc-ltr .fc-basic-view .fc-day-number {
+       text-align: right;
+}
+
+.fc-rtl .fc-basic-view .fc-day-number {
+       text-align: left;
+}
+
+.fc-day-number.fc-other-month {
+       opacity: 0.3;
+       filter: alpha(opacity=30); /* for IE */
+       /* opacity with small font can sometimes look too faded
+          might want to set the 'color' property instead
+          making day-numbers bold also fixes the problem */
+}
+
+/* AgendaView all-day area
+--------------------------------------------------------------------------------------------------*/
+
+.fc-agenda-view .fc-day-grid {
+       position: relative;
+       z-index: 2; /* so the "more.." popover will be over the time grid */
+}
+
+.fc-agenda-view .fc-day-grid .fc-row {
+       min-height: 3em; /* all-day section will never get shorter than this */
+}
+
+.fc-agenda-view .fc-day-grid .fc-row .fc-content-skeleton {
+       padding-top: 1px; /* add a pixel to make sure there are 2px padding 
above events */
+       padding-bottom: 1em; /* give space underneath events for 
clicking/selecting days */
+}
+
+
+/* TimeGrid axis running down the side (for both the all-day area and the slot 
area)
+--------------------------------------------------------------------------------------------------*/
+
+.fc .fc-axis { /* .fc to overcome default cell styles */
+       vertical-align: middle;
+       padding: 0 4px;
+       white-space: nowrap;
+}
+
+.fc-ltr .fc-axis {
+       text-align: right;
+}
+
+.fc-rtl .fc-axis {
+       text-align: left;
+}
+
+.ui-widget td.fc-axis {
+       font-weight: normal; /* overcome jqui theme making it bold */
+}
+
+
+/* TimeGrid Structure
+--------------------------------------------------------------------------------------------------*/
+
+.fc-time-grid-container, /* so scroll container's z-index is below all-day */
+.fc-time-grid { /* so slats/bg/content/etc positions get scoped within here */
+       position: relative;
+       z-index: 1;
+}
+
+.fc-time-grid {
+       min-height: 100%; /* so if height setting is 'auto', .fc-bg stretches 
to fill height */
+}
+
+.fc-time-grid table { /* don't put outer borders on slats/bg/content/etc */
+       border: 0 hidden transparent;
+}
+
+.fc-time-grid > .fc-bg {
+       z-index: 1;
+}
+
+.fc-time-grid .fc-slats,
+.fc-time-grid > hr { /* the <hr> AgendaView injects when grid is shorter than 
scroller */
+       position: relative;
+       z-index: 2;
+}
+
+.fc-time-grid .fc-bgevent-skeleton,
+.fc-time-grid .fc-content-skeleton {
+       position: absolute;
+       top: 0;
+       left: 0;
+       right: 0;
+}
+
+.fc-time-grid .fc-bgevent-skeleton {
+       z-index: 3;
+}
+
+.fc-time-grid .fc-highlight-skeleton {
+       z-index: 4;
+}
+
+.fc-time-grid .fc-content-skeleton {
+       z-index: 5;
+}
+
+.fc-time-grid .fc-helper-skeleton {
+       z-index: 6;
+}
+
+
+/* TimeGrid Slats (lines that run horizontally)
+--------------------------------------------------------------------------------------------------*/
+
+.fc-slats td {
+       height: 1.5em;
+       border-bottom: 0; /* each cell is responsible for its top border */
+}
+
+.fc-slats .fc-minor td {
+       border-top-style: dotted;
+}
+
+.fc-slats .ui-widget-content { /* for jqui theme */
+       background: none; /* see through to fc-bg */
+}
+
+
+/* TimeGrid Highlighting Slots
+--------------------------------------------------------------------------------------------------*/
+
+.fc-time-grid .fc-highlight-container { /* a div within a cell within the 
fc-highlight-skeleton */
+       position: relative; /* scopes the left/right of the fc-highlight to be 
in the column */
+}
+
+.fc-time-grid .fc-highlight {
+       position: absolute;
+       left: 0;
+       right: 0;
+       /* top and bottom will be in by JS */
+}
+
+
+/* TimeGrid Event Containment
+--------------------------------------------------------------------------------------------------*/
+
+.fc-time-grid .fc-event-container, /* a div within a cell within the 
fc-content-skeleton */
+.fc-time-grid .fc-bgevent-container { /* a div within a cell within the 
fc-bgevent-skeleton */
+       position: relative;
+}
+
+.fc-ltr .fc-time-grid .fc-event-container { /* space on the sides of events 
for LTR (default) */
+       margin: 0 2.5% 0 2px;
+}
+
+.fc-rtl .fc-time-grid .fc-event-container { /* space on the sides of events 
for RTL */
+       margin: 0 2px 0 2.5%;
+}
+
+.fc-time-grid .fc-event,
+.fc-time-grid .fc-bgevent {
+       position: absolute;
+       z-index: 1; /* scope inner z-index's */
+}
+
+.fc-time-grid .fc-bgevent {
+       /* background events always span full width */
+       left: 0;
+       right: 0;
+}
+
+
+/* TimeGrid Event Styling
+----------------------------------------------------------------------------------------------------
+We use the full "fc-time-grid-event" class instead of using descendants 
because the event won't
+be a descendant of the grid when it is being dragged.
+*/
+
+.fc-time-grid-event.fc-not-start { /* events that are continuing from another 
day */
+       /* replace space made by the top border with padding */
+       border-top-width: 0;
+       padding-top: 1px;
+
+       /* remove top rounded corners */
+       border-top-left-radius: 0;
+       border-top-right-radius: 0;
+}
+
+.fc-time-grid-event.fc-not-end {
+       /* replace space made by the top border with padding */
+       border-bottom-width: 0;
+       padding-bottom: 1px;
+
+       /* remove bottom rounded corners */
+       border-bottom-left-radius: 0;
+       border-bottom-right-radius: 0;
+}
+
+.fc-time-grid-event {
+       overflow: hidden; /* don't let the bg flow over rounded corners */
+}
+
+.fc-time-grid-event > .fc-content { /* contains the time and title, but no bg 
and resizer */
+       position: relative;
+       z-index: 2; /* above the bg */
+}
+
+.fc-time-grid-event .fc-time,
+.fc-time-grid-event .fc-title {
+       padding: 0 1px;
+}
+
+.fc-time-grid-event .fc-time {
+       font-size: .85em;
+       white-space: nowrap;
+}
+
+.fc-time-grid-event .fc-bg {
+       z-index: 1;
+       background: #fff;
+       opacity: .25;
+       filter: alpha(opacity=25); /* for IE */
+}
+
+/* short mode, where time and title are on the same line */
+
+.fc-time-grid-event.fc-short .fc-content {
+       /* don't wrap to second line (now that contents will be inline) */
+       white-space: nowrap;
+}
+
+.fc-time-grid-event.fc-short .fc-time,
+.fc-time-grid-event.fc-short .fc-title {
+       /* put the time and title on the same line */
+       display: inline-block;
+       vertical-align: top;
+}
+
+.fc-time-grid-event.fc-short .fc-time span {
+       display: none; /* don't display the full time text... */
+}
+
+.fc-time-grid-event.fc-short .fc-time:before {
+       content: attr(data-start); /* ...instead, display only the start time */
+}
+
+.fc-time-grid-event.fc-short .fc-time:after {
+       content: "\000A0-\000A0"; /* seperate with a dash, wrapped in nbsp's */
+}
+
+.fc-time-grid-event.fc-short .fc-title {
+       font-size: .85em; /* make the title text the same size as the time */
+       padding: 0; /* undo padding from above */
+}
+
+/* resizer */
+
+.fc-time-grid-event .fc-resizer {
+       position: absolute;
+       z-index: 3; /* above content */
+       left: 0;
+       right: 0;
+       bottom: 0;
+       height: 8px;
+       overflow: hidden;
+       line-height: 8px;
+       font-size: 11px;
+       font-family: monospace;
+       text-align: center;
+       cursor: s-resize;
+}
+
+.fc-time-grid-event .fc-resizer:after {
+       content: "=";
+}

Reply via email to