removed obsolete scripts
This commit is contained in:
		
							parent
							
								
									d143e59889
								
							
						
					
					
						commit
						97dc46fb7d
					
				|  | @ -123,8 +123,6 @@ echo $_SESSION['header']; | |||
| 				echo "<script type=\"text/javascript\" src=\"../lib/" . $jsEntry . "\"></script>\n"; | ||||
| 			} | ||||
| 		?>
 | ||||
| 		<script type="text/javascript" src="../lib/extra/responsive/200_modernizr.js"></script> | ||||
| 		<script type="text/javascript" src="../lib/extra/responsive/250_foundation.js"></script> | ||||
| 		<table border=0 width="100%" class="lamHeader ui-corner-all"> | ||||
| 			<tr> | ||||
| 				<td align="left" height="30"> | ||||
|  |  | |||
|  | @ -1,847 +0,0 @@ | |||
| /* Modernizr 2.8.3 (Custom Build) | MIT & BSD | ||||
|  * Build: http://modernizr.com/download/#-fontface-backgroundsize-borderimage-borderradius-boxshadow-flexbox-hsla-multiplebgs-opacity-rgba-textshadow-cssanimations-csscolumns-generatedcontent-cssgradients-cssreflections-csstransforms-csstransforms3d-csstransitions-applicationcache-canvas-canvastext-draganddrop-hashchange-history-audio-video-indexeddb-input-inputtypes-localstorage-postmessage-sessionstorage-websockets-websqldatabase-webworkers-geolocation-inlinesvg-smil-svg-svgclippaths-touch-webgl-shiv-mq-cssclasses-addtest-prefixed-teststyles-testprop-testallprops-hasevent-prefixes-domprefixes-load
 | ||||
|  */ | ||||
| ; | ||||
| 
 | ||||
| 
 | ||||
| 
 | ||||
| window.Modernizr = (function( window, document, undefined ) { | ||||
| 
 | ||||
|     var version = '2.8.3', | ||||
| 
 | ||||
|     Modernizr = {}, | ||||
| 
 | ||||
|     enableClasses = true, | ||||
| 
 | ||||
|     docElement = document.documentElement, | ||||
| 
 | ||||
|     mod = 'modernizr', | ||||
|     modElem = document.createElement(mod), | ||||
|     mStyle = modElem.style, | ||||
| 
 | ||||
|     inputElem  = document.createElement('input')  , | ||||
| 
 | ||||
|     smile = ':)', | ||||
| 
 | ||||
|     toString = {}.toString, | ||||
| 
 | ||||
|     prefixes = ' -webkit- -moz- -o- -ms- '.split(' '), | ||||
| 
 | ||||
| 
 | ||||
| 
 | ||||
|     omPrefixes = 'Webkit Moz O ms', | ||||
| 
 | ||||
|     cssomPrefixes = omPrefixes.split(' '), | ||||
| 
 | ||||
|     domPrefixes = omPrefixes.toLowerCase().split(' '), | ||||
| 
 | ||||
|     ns = {'svg': 'http://www.w3.org/2000/svg'}, | ||||
| 
 | ||||
|     tests = {}, | ||||
|     inputs = {}, | ||||
|     attrs = {}, | ||||
| 
 | ||||
|     classes = [], | ||||
| 
 | ||||
|     slice = classes.slice, | ||||
| 
 | ||||
|     featureName,  | ||||
| 
 | ||||
| 
 | ||||
|     injectElementWithStyles = function( rule, callback, nodes, testnames ) { | ||||
| 
 | ||||
|       var style, ret, node, docOverflow, | ||||
|           div = document.createElement('div'), | ||||
|                 body = document.body, | ||||
|                 fakeBody = body || document.createElement('body'); | ||||
| 
 | ||||
|       if ( parseInt(nodes, 10) ) { | ||||
|                       while ( nodes-- ) { | ||||
|               node = document.createElement('div'); | ||||
|               node.id = testnames ? testnames[nodes] : mod + (nodes + 1); | ||||
|               div.appendChild(node); | ||||
|           } | ||||
|       } | ||||
| 
 | ||||
|                 style = ['­','<style id="s', mod, '">', rule, '</style>'].join(''); | ||||
|       div.id = mod; | ||||
|           (body ? div : fakeBody).innerHTML += style; | ||||
|       fakeBody.appendChild(div); | ||||
|       if ( !body ) { | ||||
|                 fakeBody.style.background = ''; | ||||
|                 fakeBody.style.overflow = 'hidden'; | ||||
|           docOverflow = docElement.style.overflow; | ||||
|           docElement.style.overflow = 'hidden'; | ||||
|           docElement.appendChild(fakeBody); | ||||
|       } | ||||
| 
 | ||||
|       ret = callback(div, rule); | ||||
|         if ( !body ) { | ||||
|           fakeBody.parentNode.removeChild(fakeBody); | ||||
|           docElement.style.overflow = docOverflow; | ||||
|       } else { | ||||
|           div.parentNode.removeChild(div); | ||||
|       } | ||||
| 
 | ||||
|       return !!ret; | ||||
| 
 | ||||
|     }, | ||||
| 
 | ||||
|     testMediaQuery = function( mq ) { | ||||
| 
 | ||||
|       var matchMedia = window.matchMedia || window.msMatchMedia; | ||||
|       if ( matchMedia ) { | ||||
|         return matchMedia(mq) && matchMedia(mq).matches || false; | ||||
|       } | ||||
| 
 | ||||
|       var bool; | ||||
| 
 | ||||
|       injectElementWithStyles('@media ' + mq + ' { #' + mod + ' { position: absolute; } }', function( node ) { | ||||
|         bool = (window.getComputedStyle ? | ||||
|                   getComputedStyle(node, null) : | ||||
|                   node.currentStyle)['position'] == 'absolute'; | ||||
|       }); | ||||
| 
 | ||||
|       return bool; | ||||
| 
 | ||||
|      }, | ||||
|   | ||||
| 
 | ||||
|     isEventSupported = (function() { | ||||
| 
 | ||||
|       var TAGNAMES = { | ||||
|         'select': 'input', 'change': 'input', | ||||
|         'submit': 'form', 'reset': 'form', | ||||
|         'error': 'img', 'load': 'img', 'abort': 'img' | ||||
|       }; | ||||
| 
 | ||||
|       function isEventSupported( eventName, element ) { | ||||
| 
 | ||||
|         element = element || document.createElement(TAGNAMES[eventName] || 'div'); | ||||
|         eventName = 'on' + eventName; | ||||
| 
 | ||||
|             var isSupported = eventName in element; | ||||
| 
 | ||||
|         if ( !isSupported ) { | ||||
|                 if ( !element.setAttribute ) { | ||||
|             element = document.createElement('div'); | ||||
|           } | ||||
|           if ( element.setAttribute && element.removeAttribute ) { | ||||
|             element.setAttribute(eventName, ''); | ||||
|             isSupported = is(element[eventName], 'function'); | ||||
| 
 | ||||
|                     if ( !is(element[eventName], 'undefined') ) { | ||||
|               element[eventName] = undefined; | ||||
|             } | ||||
|             element.removeAttribute(eventName); | ||||
|           } | ||||
|         } | ||||
| 
 | ||||
|         element = null; | ||||
|         return isSupported; | ||||
|       } | ||||
|       return isEventSupported; | ||||
|     })(), | ||||
| 
 | ||||
| 
 | ||||
|     _hasOwnProperty = ({}).hasOwnProperty, hasOwnProp; | ||||
| 
 | ||||
|     if ( !is(_hasOwnProperty, 'undefined') && !is(_hasOwnProperty.call, 'undefined') ) { | ||||
|       hasOwnProp = function (object, property) { | ||||
|         return _hasOwnProperty.call(object, property); | ||||
|       }; | ||||
|     } | ||||
|     else { | ||||
|       hasOwnProp = function (object, property) {  | ||||
|         return ((property in object) && is(object.constructor.prototype[property], 'undefined')); | ||||
|       }; | ||||
|     } | ||||
| 
 | ||||
| 
 | ||||
|     if (!Function.prototype.bind) { | ||||
|       Function.prototype.bind = function bind(that) { | ||||
| 
 | ||||
|         var target = this; | ||||
| 
 | ||||
|         if (typeof target != "function") { | ||||
|             throw new TypeError(); | ||||
|         } | ||||
| 
 | ||||
|         var args = slice.call(arguments, 1), | ||||
|             bound = function () { | ||||
| 
 | ||||
|             if (this instanceof bound) { | ||||
| 
 | ||||
|               var F = function(){}; | ||||
|               F.prototype = target.prototype; | ||||
|               var self = new F(); | ||||
| 
 | ||||
|               var result = target.apply( | ||||
|                   self, | ||||
|                   args.concat(slice.call(arguments)) | ||||
|               ); | ||||
|               if (Object(result) === result) { | ||||
|                   return result; | ||||
|               } | ||||
|               return self; | ||||
| 
 | ||||
|             } else { | ||||
| 
 | ||||
|               return target.apply( | ||||
|                   that, | ||||
|                   args.concat(slice.call(arguments)) | ||||
|               ); | ||||
| 
 | ||||
|             } | ||||
| 
 | ||||
|         }; | ||||
| 
 | ||||
|         return bound; | ||||
|       }; | ||||
|     } | ||||
| 
 | ||||
|     function setCss( str ) { | ||||
|         mStyle.cssText = str; | ||||
|     } | ||||
| 
 | ||||
|     function setCssAll( str1, str2 ) { | ||||
|         return setCss(prefixes.join(str1 + ';') + ( str2 || '' )); | ||||
|     } | ||||
| 
 | ||||
|     function is( obj, type ) { | ||||
|         return typeof obj === type; | ||||
|     } | ||||
| 
 | ||||
|     function contains( str, substr ) { | ||||
|         return !!~('' + str).indexOf(substr); | ||||
|     } | ||||
| 
 | ||||
|     function testProps( props, prefixed ) { | ||||
|         for ( var i in props ) { | ||||
|             var prop = props[i]; | ||||
|             if ( !contains(prop, "-") && mStyle[prop] !== undefined ) { | ||||
|                 return prefixed == 'pfx' ? prop : true; | ||||
|             } | ||||
|         } | ||||
|         return false; | ||||
|     } | ||||
| 
 | ||||
|     function testDOMProps( props, obj, elem ) { | ||||
|         for ( var i in props ) { | ||||
|             var item = obj[props[i]]; | ||||
|             if ( item !== undefined) { | ||||
| 
 | ||||
|                             if (elem === false) return props[i]; | ||||
| 
 | ||||
|                             if (is(item, 'function')){ | ||||
|                                 return item.bind(elem || obj); | ||||
|                 } | ||||
| 
 | ||||
|                             return item; | ||||
|             } | ||||
|         } | ||||
|         return false; | ||||
|     } | ||||
| 
 | ||||
|     function testPropsAll( prop, prefixed, elem ) { | ||||
| 
 | ||||
|         var ucProp  = prop.charAt(0).toUpperCase() + prop.slice(1), | ||||
|             props   = (prop + ' ' + cssomPrefixes.join(ucProp + ' ') + ucProp).split(' '); | ||||
| 
 | ||||
|             if(is(prefixed, "string") || is(prefixed, "undefined")) { | ||||
|           return testProps(props, prefixed); | ||||
| 
 | ||||
|             } else { | ||||
|           props = (prop + ' ' + (domPrefixes).join(ucProp + ' ') + ucProp).split(' '); | ||||
|           return testDOMProps(props, prefixed, elem); | ||||
|         } | ||||
|     }    tests['flexbox'] = function() { | ||||
|       return testPropsAll('flexWrap'); | ||||
|     };    tests['canvas'] = function() { | ||||
|         var elem = document.createElement('canvas'); | ||||
|         return !!(elem.getContext && elem.getContext('2d')); | ||||
|     }; | ||||
| 
 | ||||
|     tests['canvastext'] = function() { | ||||
|         return !!(Modernizr['canvas'] && is(document.createElement('canvas').getContext('2d').fillText, 'function')); | ||||
|     }; | ||||
| 
 | ||||
| 
 | ||||
| 
 | ||||
|     tests['webgl'] = function() { | ||||
|         return !!window.WebGLRenderingContext; | ||||
|     }; | ||||
| 
 | ||||
| 
 | ||||
|     tests['touch'] = function() { | ||||
|         var bool; | ||||
| 
 | ||||
|         if(('ontouchstart' in window) || window.DocumentTouch && document instanceof DocumentTouch) { | ||||
|           bool = true; | ||||
|         } else { | ||||
|           injectElementWithStyles(['@media (',prefixes.join('touch-enabled),('),mod,')','{#modernizr{top:9px;position:absolute}}'].join(''), function( node ) { | ||||
|             bool = node.offsetTop === 9; | ||||
|           }); | ||||
|         } | ||||
| 
 | ||||
|         return bool; | ||||
|     }; | ||||
| 
 | ||||
| 
 | ||||
| 
 | ||||
|     tests['geolocation'] = function() { | ||||
|         return 'geolocation' in navigator; | ||||
|     }; | ||||
| 
 | ||||
| 
 | ||||
|     tests['postmessage'] = function() { | ||||
|       return !!window.postMessage; | ||||
|     }; | ||||
| 
 | ||||
| 
 | ||||
|     tests['websqldatabase'] = function() { | ||||
|       return !!window.openDatabase; | ||||
|     }; | ||||
| 
 | ||||
|     tests['indexedDB'] = function() { | ||||
|       return !!testPropsAll("indexedDB", window); | ||||
|     }; | ||||
| 
 | ||||
|     tests['hashchange'] = function() { | ||||
|       return isEventSupported('hashchange', window) && (document.documentMode === undefined || document.documentMode > 7); | ||||
|     }; | ||||
| 
 | ||||
|     tests['history'] = function() { | ||||
|       return !!(window.history && history.pushState); | ||||
|     }; | ||||
| 
 | ||||
|     tests['draganddrop'] = function() { | ||||
|         var div = document.createElement('div'); | ||||
|         return ('draggable' in div) || ('ondragstart' in div && 'ondrop' in div); | ||||
|     }; | ||||
| 
 | ||||
|     tests['websockets'] = function() { | ||||
|         return 'WebSocket' in window || 'MozWebSocket' in window; | ||||
|     }; | ||||
| 
 | ||||
| 
 | ||||
|     tests['rgba'] = function() { | ||||
|         setCss('background-color:rgba(150,255,150,.5)'); | ||||
| 
 | ||||
|         return contains(mStyle.backgroundColor, 'rgba'); | ||||
|     }; | ||||
| 
 | ||||
|     tests['hsla'] = function() { | ||||
|             setCss('background-color:hsla(120,40%,100%,.5)'); | ||||
| 
 | ||||
|         return contains(mStyle.backgroundColor, 'rgba') || contains(mStyle.backgroundColor, 'hsla'); | ||||
|     }; | ||||
| 
 | ||||
|     tests['multiplebgs'] = function() { | ||||
|                 setCss('background:url(https://),url(https://),red url(https://)'); | ||||
| 
 | ||||
|             return (/(url\s*\(.*?){3}/).test(mStyle.background); | ||||
|     };    tests['backgroundsize'] = function() { | ||||
|         return testPropsAll('backgroundSize'); | ||||
|     }; | ||||
| 
 | ||||
|     tests['borderimage'] = function() { | ||||
|         return testPropsAll('borderImage'); | ||||
|     }; | ||||
| 
 | ||||
| 
 | ||||
| 
 | ||||
|     tests['borderradius'] = function() { | ||||
|         return testPropsAll('borderRadius'); | ||||
|     }; | ||||
| 
 | ||||
|     tests['boxshadow'] = function() { | ||||
|         return testPropsAll('boxShadow'); | ||||
|     }; | ||||
| 
 | ||||
|     tests['textshadow'] = function() { | ||||
|         return document.createElement('div').style.textShadow === ''; | ||||
|     }; | ||||
| 
 | ||||
| 
 | ||||
|     tests['opacity'] = function() { | ||||
|                 setCssAll('opacity:.55'); | ||||
| 
 | ||||
|                     return (/^0.55$/).test(mStyle.opacity); | ||||
|     }; | ||||
| 
 | ||||
| 
 | ||||
|     tests['cssanimations'] = function() { | ||||
|         return testPropsAll('animationName'); | ||||
|     }; | ||||
| 
 | ||||
| 
 | ||||
|     tests['csscolumns'] = function() { | ||||
|         return testPropsAll('columnCount'); | ||||
|     }; | ||||
| 
 | ||||
| 
 | ||||
|     tests['cssgradients'] = function() { | ||||
|         var str1 = 'background-image:', | ||||
|             str2 = 'gradient(linear,left top,right bottom,from(#9f9),to(white));', | ||||
|             str3 = 'linear-gradient(left top,#9f9, white);'; | ||||
| 
 | ||||
|         setCss( | ||||
|                        (str1 + '-webkit- '.split(' ').join(str2 + str1) + | ||||
|                        prefixes.join(str3 + str1)).slice(0, -str1.length) | ||||
|         ); | ||||
| 
 | ||||
|         return contains(mStyle.backgroundImage, 'gradient'); | ||||
|     }; | ||||
| 
 | ||||
| 
 | ||||
|     tests['cssreflections'] = function() { | ||||
|         return testPropsAll('boxReflect'); | ||||
|     }; | ||||
| 
 | ||||
| 
 | ||||
|     tests['csstransforms'] = function() { | ||||
|         return !!testPropsAll('transform'); | ||||
|     }; | ||||
| 
 | ||||
| 
 | ||||
|     tests['csstransforms3d'] = function() { | ||||
| 
 | ||||
|         var ret = !!testPropsAll('perspective'); | ||||
| 
 | ||||
|                         if ( ret && 'webkitPerspective' in docElement.style ) { | ||||
| 
 | ||||
|                       injectElementWithStyles('@media (transform-3d),(-webkit-transform-3d){#modernizr{left:9px;position:absolute;height:3px;}}', function( node, rule ) { | ||||
|             ret = node.offsetLeft === 9 && node.offsetHeight === 3; | ||||
|           }); | ||||
|         } | ||||
|         return ret; | ||||
|     }; | ||||
| 
 | ||||
| 
 | ||||
|     tests['csstransitions'] = function() { | ||||
|         return testPropsAll('transition'); | ||||
|     }; | ||||
| 
 | ||||
| 
 | ||||
| 
 | ||||
|     tests['fontface'] = function() { | ||||
|         var bool; | ||||
| 
 | ||||
|         injectElementWithStyles('@font-face {font-family:"font";src:url("https://")}', function( node, rule ) { | ||||
|           var style = document.getElementById('smodernizr'), | ||||
|               sheet = style.sheet || style.styleSheet, | ||||
|               cssText = sheet ? (sheet.cssRules && sheet.cssRules[0] ? sheet.cssRules[0].cssText : sheet.cssText || '') : ''; | ||||
| 
 | ||||
|           bool = /src/i.test(cssText) && cssText.indexOf(rule.split(' ')[0]) === 0; | ||||
|         }); | ||||
| 
 | ||||
|         return bool; | ||||
|     }; | ||||
| 
 | ||||
|     tests['generatedcontent'] = function() { | ||||
|         var bool; | ||||
| 
 | ||||
|         injectElementWithStyles(['#',mod,'{font:0/0 a}#',mod,':after{content:"',smile,'";visibility:hidden;font:3px/1 a}'].join(''), function( node ) { | ||||
|           bool = node.offsetHeight >= 3; | ||||
|         }); | ||||
| 
 | ||||
|         return bool; | ||||
|     }; | ||||
|     tests['video'] = function() { | ||||
|         var elem = document.createElement('video'), | ||||
|             bool = false; | ||||
| 
 | ||||
|             try { | ||||
|             if ( bool = !!elem.canPlayType ) { | ||||
|                 bool      = new Boolean(bool); | ||||
|                 bool.ogg  = elem.canPlayType('video/ogg; codecs="theora"')      .replace(/^no$/,''); | ||||
| 
 | ||||
|                             bool.h264 = elem.canPlayType('video/mp4; codecs="avc1.42E01E"') .replace(/^no$/,''); | ||||
| 
 | ||||
|                 bool.webm = elem.canPlayType('video/webm; codecs="vp8, vorbis"').replace(/^no$/,''); | ||||
|             } | ||||
| 
 | ||||
|         } catch(e) { } | ||||
| 
 | ||||
|         return bool; | ||||
|     }; | ||||
| 
 | ||||
|     tests['audio'] = function() { | ||||
|         var elem = document.createElement('audio'), | ||||
|             bool = false; | ||||
| 
 | ||||
|         try { | ||||
|             if ( bool = !!elem.canPlayType ) { | ||||
|                 bool      = new Boolean(bool); | ||||
|                 bool.ogg  = elem.canPlayType('audio/ogg; codecs="vorbis"').replace(/^no$/,''); | ||||
|                 bool.mp3  = elem.canPlayType('audio/mpeg;')               .replace(/^no$/,''); | ||||
| 
 | ||||
|                                                     bool.wav  = elem.canPlayType('audio/wav; codecs="1"')     .replace(/^no$/,''); | ||||
|                 bool.m4a  = ( elem.canPlayType('audio/x-m4a;')            || | ||||
|                               elem.canPlayType('audio/aac;'))             .replace(/^no$/,''); | ||||
|             } | ||||
|         } catch(e) { } | ||||
| 
 | ||||
|         return bool; | ||||
|     }; | ||||
| 
 | ||||
| 
 | ||||
|     tests['localstorage'] = function() { | ||||
|         try { | ||||
|             localStorage.setItem(mod, mod); | ||||
|             localStorage.removeItem(mod); | ||||
|             return true; | ||||
|         } catch(e) { | ||||
|             return false; | ||||
|         } | ||||
|     }; | ||||
| 
 | ||||
|     tests['sessionstorage'] = function() { | ||||
|         try { | ||||
|             sessionStorage.setItem(mod, mod); | ||||
|             sessionStorage.removeItem(mod); | ||||
|             return true; | ||||
|         } catch(e) { | ||||
|             return false; | ||||
|         } | ||||
|     }; | ||||
| 
 | ||||
| 
 | ||||
|     tests['webworkers'] = function() { | ||||
|         return !!window.Worker; | ||||
|     }; | ||||
| 
 | ||||
| 
 | ||||
|     tests['applicationcache'] = function() { | ||||
|         return !!window.applicationCache; | ||||
|     }; | ||||
| 
 | ||||
| 
 | ||||
|     tests['svg'] = function() { | ||||
|         return !!document.createElementNS && !!document.createElementNS(ns.svg, 'svg').createSVGRect; | ||||
|     }; | ||||
| 
 | ||||
|     tests['inlinesvg'] = function() { | ||||
|       var div = document.createElement('div'); | ||||
|       div.innerHTML = '<svg/>'; | ||||
|       return (div.firstChild && div.firstChild.namespaceURI) == ns.svg; | ||||
|     }; | ||||
| 
 | ||||
|     tests['smil'] = function() { | ||||
|         return !!document.createElementNS && /SVGAnimate/.test(toString.call(document.createElementNS(ns.svg, 'animate'))); | ||||
|     }; | ||||
| 
 | ||||
| 
 | ||||
|     tests['svgclippaths'] = function() { | ||||
|         return !!document.createElementNS && /SVGClipPath/.test(toString.call(document.createElementNS(ns.svg, 'clipPath'))); | ||||
|     }; | ||||
| 
 | ||||
|     function webforms() { | ||||
|                                             Modernizr['input'] = (function( props ) { | ||||
|             for ( var i = 0, len = props.length; i < len; i++ ) { | ||||
|                 attrs[ props[i] ] = !!(props[i] in inputElem); | ||||
|             } | ||||
|             if (attrs.list){ | ||||
|                                   attrs.list = !!(document.createElement('datalist') && window.HTMLDataListElement); | ||||
|             } | ||||
|             return attrs; | ||||
|         })('autocomplete autofocus list placeholder max min multiple pattern required step'.split(' ')); | ||||
|                             Modernizr['inputtypes'] = (function(props) { | ||||
| 
 | ||||
|             for ( var i = 0, bool, inputElemType, defaultView, len = props.length; i < len; i++ ) { | ||||
| 
 | ||||
|                 inputElem.setAttribute('type', inputElemType = props[i]); | ||||
|                 bool = inputElem.type !== 'text'; | ||||
| 
 | ||||
|                                                     if ( bool ) { | ||||
| 
 | ||||
|                     inputElem.value         = smile; | ||||
|                     inputElem.style.cssText = 'position:absolute;visibility:hidden;'; | ||||
| 
 | ||||
|                     if ( /^range$/.test(inputElemType) && inputElem.style.WebkitAppearance !== undefined ) { | ||||
| 
 | ||||
|                       docElement.appendChild(inputElem); | ||||
|                       defaultView = document.defaultView; | ||||
| 
 | ||||
|                                         bool =  defaultView.getComputedStyle && | ||||
|                               defaultView.getComputedStyle(inputElem, null).WebkitAppearance !== 'textfield' && | ||||
|                                                                                   (inputElem.offsetHeight !== 0); | ||||
| 
 | ||||
|                       docElement.removeChild(inputElem); | ||||
| 
 | ||||
|                     } else if ( /^(search|tel)$/.test(inputElemType) ){ | ||||
|                                                                                     } else if ( /^(url|email)$/.test(inputElemType) ) { | ||||
|                                         bool = inputElem.checkValidity && inputElem.checkValidity() === false; | ||||
| 
 | ||||
|                     } else { | ||||
|                                         bool = inputElem.value != smile; | ||||
|                     } | ||||
|                 } | ||||
| 
 | ||||
|                 inputs[ props[i] ] = !!bool; | ||||
|             } | ||||
|             return inputs; | ||||
|         })('search tel url email datetime date month week time datetime-local number range color'.split(' ')); | ||||
|         } | ||||
|     for ( var feature in tests ) { | ||||
|         if ( hasOwnProp(tests, feature) ) { | ||||
|                                     featureName  = feature.toLowerCase(); | ||||
|             Modernizr[featureName] = tests[feature](); | ||||
| 
 | ||||
|             classes.push((Modernizr[featureName] ? '' : 'no-') + featureName); | ||||
|         } | ||||
|     } | ||||
| 
 | ||||
|     Modernizr.input || webforms(); | ||||
| 
 | ||||
| 
 | ||||
|      Modernizr.addTest = function ( feature, test ) { | ||||
|        if ( typeof feature == 'object' ) { | ||||
|          for ( var key in feature ) { | ||||
|            if ( hasOwnProp( feature, key ) ) { | ||||
|              Modernizr.addTest( key, feature[ key ] ); | ||||
|            } | ||||
|          } | ||||
|        } else { | ||||
| 
 | ||||
|          feature = feature.toLowerCase(); | ||||
| 
 | ||||
|          if ( Modernizr[feature] !== undefined ) { | ||||
|                                               return Modernizr; | ||||
|          } | ||||
| 
 | ||||
|          test = typeof test == 'function' ? test() : test; | ||||
| 
 | ||||
|          if (typeof enableClasses !== "undefined" && enableClasses) { | ||||
|            docElement.className += ' ' + (test ? '' : 'no-') + feature; | ||||
|          } | ||||
|          Modernizr[feature] = test; | ||||
| 
 | ||||
|        } | ||||
| 
 | ||||
|        return Modernizr;  | ||||
|      }; | ||||
| 
 | ||||
| 
 | ||||
|     setCss(''); | ||||
|     modElem = inputElem = null; | ||||
| 
 | ||||
|     ;(function(window, document) { | ||||
|                 var version = '3.7.0'; | ||||
| 
 | ||||
|             var options = window.html5 || {}; | ||||
| 
 | ||||
|             var reSkip = /^<|^(?:button|map|select|textarea|object|iframe|option|optgroup)$/i; | ||||
| 
 | ||||
|             var saveClones = /^(?:a|b|code|div|fieldset|h1|h2|h3|h4|h5|h6|i|label|li|ol|p|q|span|strong|style|table|tbody|td|th|tr|ul)$/i; | ||||
| 
 | ||||
|             var supportsHtml5Styles; | ||||
| 
 | ||||
|             var expando = '_html5shiv'; | ||||
| 
 | ||||
|             var expanID = 0; | ||||
| 
 | ||||
|             var expandoData = {}; | ||||
| 
 | ||||
|             var supportsUnknownElements; | ||||
| 
 | ||||
|         (function() { | ||||
|           try { | ||||
|             var a = document.createElement('a'); | ||||
|             a.innerHTML = '<xyz></xyz>'; | ||||
|                     supportsHtml5Styles = ('hidden' in a); | ||||
| 
 | ||||
|             supportsUnknownElements = a.childNodes.length == 1 || (function() { | ||||
|                         (document.createElement)('a'); | ||||
|               var frag = document.createDocumentFragment(); | ||||
|               return ( | ||||
|                 typeof frag.cloneNode == 'undefined' || | ||||
|                 typeof frag.createDocumentFragment == 'undefined' || | ||||
|                 typeof frag.createElement == 'undefined' | ||||
|               ); | ||||
|             }()); | ||||
|           } catch(e) { | ||||
|                     supportsHtml5Styles = true; | ||||
|             supportsUnknownElements = true; | ||||
|           } | ||||
| 
 | ||||
|         }()); | ||||
| 
 | ||||
|             function addStyleSheet(ownerDocument, cssText) { | ||||
|           var p = ownerDocument.createElement('p'), | ||||
|           parent = ownerDocument.getElementsByTagName('head')[0] || ownerDocument.documentElement; | ||||
| 
 | ||||
|           p.innerHTML = 'x<style>' + cssText + '</style>'; | ||||
|           return parent.insertBefore(p.lastChild, parent.firstChild); | ||||
|         } | ||||
| 
 | ||||
|             function getElements() { | ||||
|           var elements = html5.elements; | ||||
|           return typeof elements == 'string' ? elements.split(' ') : elements; | ||||
|         } | ||||
| 
 | ||||
|             function getExpandoData(ownerDocument) { | ||||
|           var data = expandoData[ownerDocument[expando]]; | ||||
|           if (!data) { | ||||
|             data = {}; | ||||
|             expanID++; | ||||
|             ownerDocument[expando] = expanID; | ||||
|             expandoData[expanID] = data; | ||||
|           } | ||||
|           return data; | ||||
|         } | ||||
| 
 | ||||
|             function createElement(nodeName, ownerDocument, data){ | ||||
|           if (!ownerDocument) { | ||||
|             ownerDocument = document; | ||||
|           } | ||||
|           if(supportsUnknownElements){ | ||||
|             return ownerDocument.createElement(nodeName); | ||||
|           } | ||||
|           if (!data) { | ||||
|             data = getExpandoData(ownerDocument); | ||||
|           } | ||||
|           var node; | ||||
| 
 | ||||
|           if (data.cache[nodeName]) { | ||||
|             node = data.cache[nodeName].cloneNode(); | ||||
|           } else if (saveClones.test(nodeName)) { | ||||
|             node = (data.cache[nodeName] = data.createElem(nodeName)).cloneNode(); | ||||
|           } else { | ||||
|             node = data.createElem(nodeName); | ||||
|           } | ||||
| 
 | ||||
|                                                     return node.canHaveChildren && !reSkip.test(nodeName) && !node.tagUrn ? data.frag.appendChild(node) : node; | ||||
|         } | ||||
| 
 | ||||
|             function createDocumentFragment(ownerDocument, data){ | ||||
|           if (!ownerDocument) { | ||||
|             ownerDocument = document; | ||||
|           } | ||||
|           if(supportsUnknownElements){ | ||||
|             return ownerDocument.createDocumentFragment(); | ||||
|           } | ||||
|           data = data || getExpandoData(ownerDocument); | ||||
|           var clone = data.frag.cloneNode(), | ||||
|           i = 0, | ||||
|           elems = getElements(), | ||||
|           l = elems.length; | ||||
|           for(;i<l;i++){ | ||||
|             clone.createElement(elems[i]); | ||||
|           } | ||||
|           return clone; | ||||
|         } | ||||
| 
 | ||||
|             function shivMethods(ownerDocument, data) { | ||||
|           if (!data.cache) { | ||||
|             data.cache = {}; | ||||
|             data.createElem = ownerDocument.createElement; | ||||
|             data.createFrag = ownerDocument.createDocumentFragment; | ||||
|             data.frag = data.createFrag(); | ||||
|           } | ||||
| 
 | ||||
| 
 | ||||
|           ownerDocument.createElement = function(nodeName) { | ||||
|                     if (!html5.shivMethods) { | ||||
|               return data.createElem(nodeName); | ||||
|             } | ||||
|             return createElement(nodeName, ownerDocument, data); | ||||
|           }; | ||||
| 
 | ||||
|           ownerDocument.createDocumentFragment = Function('h,f', 'return function(){' + | ||||
|                                                           'var n=f.cloneNode(),c=n.createElement;' + | ||||
|                                                           'h.shivMethods&&(' + | ||||
|                                                                                                                 getElements().join().replace(/[\w\-]+/g, function(nodeName) { | ||||
|             data.createElem(nodeName); | ||||
|             data.frag.createElement(nodeName); | ||||
|             return 'c("' + nodeName + '")'; | ||||
|           }) + | ||||
|             ');return n}' | ||||
|                                                          )(html5, data.frag); | ||||
|         } | ||||
| 
 | ||||
|             function shivDocument(ownerDocument) { | ||||
|           if (!ownerDocument) { | ||||
|             ownerDocument = document; | ||||
|           } | ||||
|           var data = getExpandoData(ownerDocument); | ||||
| 
 | ||||
|           if (html5.shivCSS && !supportsHtml5Styles && !data.hasCSS) { | ||||
|             data.hasCSS = !!addStyleSheet(ownerDocument, | ||||
|                                                                                 'article,aside,dialog,figcaption,figure,footer,header,hgroup,main,nav,section{display:block}' + | ||||
|                                                                                     'mark{background:#FF0;color:#000}' + | ||||
|                                                                                     'template{display:none}' | ||||
|                                          ); | ||||
|           } | ||||
|           if (!supportsUnknownElements) { | ||||
|             shivMethods(ownerDocument, data); | ||||
|           } | ||||
|           return ownerDocument; | ||||
|         } | ||||
| 
 | ||||
|             var html5 = { | ||||
| 
 | ||||
|                 'elements': options.elements || 'abbr article aside audio bdi canvas data datalist details dialog figcaption figure footer header hgroup main mark meter nav output progress section summary template time video', | ||||
| 
 | ||||
|                 'version': version, | ||||
| 
 | ||||
|                 'shivCSS': (options.shivCSS !== false), | ||||
| 
 | ||||
|                 'supportsUnknownElements': supportsUnknownElements, | ||||
| 
 | ||||
|                 'shivMethods': (options.shivMethods !== false), | ||||
| 
 | ||||
|                 'type': 'default', | ||||
| 
 | ||||
|                 'shivDocument': shivDocument, | ||||
| 
 | ||||
|                 createElement: createElement, | ||||
| 
 | ||||
|                 createDocumentFragment: createDocumentFragment | ||||
|         }; | ||||
| 
 | ||||
|             window.html5 = html5; | ||||
| 
 | ||||
|             shivDocument(document); | ||||
| 
 | ||||
|     }(this, document)); | ||||
| 
 | ||||
|     Modernizr._version      = version; | ||||
| 
 | ||||
|     Modernizr._prefixes     = prefixes; | ||||
|     Modernizr._domPrefixes  = domPrefixes; | ||||
|     Modernizr._cssomPrefixes  = cssomPrefixes; | ||||
| 
 | ||||
|     Modernizr.mq            = testMediaQuery; | ||||
| 
 | ||||
|     Modernizr.hasEvent      = isEventSupported; | ||||
| 
 | ||||
|     Modernizr.testProp      = function(prop){ | ||||
|         return testProps([prop]); | ||||
|     }; | ||||
| 
 | ||||
|     Modernizr.testAllProps  = testPropsAll; | ||||
| 
 | ||||
| 
 | ||||
|     Modernizr.testStyles    = injectElementWithStyles; | ||||
|     Modernizr.prefixed      = function(prop, obj, elem){ | ||||
|       if(!obj) { | ||||
|         return testPropsAll(prop, 'pfx'); | ||||
|       } else { | ||||
|             return testPropsAll(prop, obj, elem); | ||||
|       } | ||||
|     }; | ||||
| 
 | ||||
| 
 | ||||
|     docElement.className = docElement.className.replace(/(^|\s)no-js(\s|$)/, '$1$2') + | ||||
| 
 | ||||
|                                                     (enableClasses ? ' js ' + classes.join(' ') : ''); | ||||
| 
 | ||||
|     return Modernizr; | ||||
| 
 | ||||
| })(this, this.document); | ||||
| /*yepnope1.5.4|WTFPL*/ | ||||
| (function(a,b,c){function d(a){return"[object Function]"==o.call(a)}function e(a){return"string"==typeof a}function f(){}function g(a){return!a||"loaded"==a||"complete"==a||"uninitialized"==a}function h(){var a=p.shift();q=1,a?a.t?m(function(){("c"==a.t?B.injectCss:B.injectJs)(a.s,0,a.a,a.x,a.e,1)},0):(a(),h()):q=0}function i(a,c,d,e,f,i,j){function k(b){if(!o&&g(l.readyState)&&(u.r=o=1,!q&&h(),l.onload=l.onreadystatechange=null,b)){"img"!=a&&m(function(){t.removeChild(l)},50);for(var d in y[c])y[c].hasOwnProperty(d)&&y[c][d].onload()}}var j=j||B.errorTimeout,l=b.createElement(a),o=0,r=0,u={t:d,s:c,e:f,a:i,x:j};1===y[c]&&(r=1,y[c]=[]),"object"==a?l.data=c:(l.src=c,l.type=a),l.width=l.height="0",l.onerror=l.onload=l.onreadystatechange=function(){k.call(this,r)},p.splice(e,0,u),"img"!=a&&(r||2===y[c]?(t.insertBefore(l,s?null:n),m(k,j)):y[c].push(l))}function j(a,b,c,d,f){return q=0,b=b||"j",e(a)?i("c"==b?v:u,a,b,this.i++,c,d,f):(p.splice(this.i++,0,a),1==p.length&&h()),this}function k(){var a=B;return a.loader={load:j,i:0},a}var l=b.documentElement,m=a.setTimeout,n=b.getElementsByTagName("script")[0],o={}.toString,p=[],q=0,r="MozAppearance"in l.style,s=r&&!!b.createRange().compareNode,t=s?l:n.parentNode,l=a.opera&&"[object Opera]"==o.call(a.opera),l=!!b.attachEvent&&!l,u=r?"object":l?"script":"img",v=l?"script":u,w=Array.isArray||function(a){return"[object Array]"==o.call(a)},x=[],y={},z={timeout:function(a,b){return b.length&&(a.timeout=b[0]),a}},A,B;B=function(a){function b(a){var a=a.split("!"),b=x.length,c=a.pop(),d=a.length,c={url:c,origUrl:c,prefixes:a},e,f,g;for(f=0;f<d;f++)g=a[f].split("="),(e=z[g.shift()])&&(c=e(c,g));for(f=0;f<b;f++)c=x[f](c);return c}function g(a,e,f,g,h){var i=b(a),j=i.autoCallback;i.url.split(".").pop().split("?").shift(),i.bypass||(e&&(e=d(e)?e:e[a]||e[g]||e[a.split("/").pop().split("?")[0]]),i.instead?i.instead(a,e,f,g,h):(y[i.url]?i.noexec=!0:y[i.url]=1,f.load(i.url,i.forceCSS||!i.forceJS&&"css"==i.url.split(".").pop().split("?").shift()?"c":c,i.noexec,i.attrs,i.timeout),(d(e)||d(j))&&f.load(function(){k(),e&&e(i.origUrl,h,g),j&&j(i.origUrl,h,g),y[i.url]=2})))}function h(a,b){function c(a,c){if(a){if(e(a))c||(j=function(){var a=[].slice.call(arguments);k.apply(this,a),l()}),g(a,j,b,0,h);else if(Object(a)===a)for(n in m=function(){var b=0,c;for(c in a)a.hasOwnProperty(c)&&b++;return b}(),a)a.hasOwnProperty(n)&&(!c&&!--m&&(d(j)?j=function(){var a=[].slice.call(arguments);k.apply(this,a),l()}:j[n]=function(a){return function(){var b=[].slice.call(arguments);a&&a.apply(this,b),l()}}(k[n])),g(a[n],j,b,n,h))}else!c&&l()}var h=!!a.test,i=a.load||a.both,j=a.callback||f,k=j,l=a.complete||f,m,n;c(h?a.yep:a.nope,!!i),i&&c(i)}var i,j,l=this.yepnope.loader;if(e(a))g(a,0,l,0);else if(w(a))for(i=0;i<a.length;i++)j=a[i],e(j)?g(j,0,l,0):w(j)?B(j):Object(j)===j&&h(j,l);else Object(a)===a&&h(a,l)},B.addPrefix=function(a,b){z[a]=b},B.addFilter=function(a){x.push(a)},B.errorTimeout=1e4,null==b.readyState&&b.addEventListener&&(b.readyState="loading",b.addEventListener("DOMContentLoaded",A=function(){b.removeEventListener("DOMContentLoaded",A,0),b.readyState="complete"},0)),a.yepnope=k(),a.yepnope.executeStack=h,a.yepnope.injectJs=function(a,c,d,e,i,j){var k=b.createElement("script"),l,o,e=e||B.errorTimeout;k.src=a;for(o in d)k.setAttribute(o,d[o]);c=j?h:c||f,k.onreadystatechange=k.onload=function(){!l&&g(k.readyState)&&(l=1,c(),k.onload=k.onreadystatechange=null)},m(function(){l||(l=1,c(1))},e),i?k.onload():n.parentNode.insertBefore(k,n)},a.yepnope.injectCss=function(a,c,d,e,g,i){var e=b.createElement("link"),j,c=i?h:c||f;e.href=a,e.rel="stylesheet",e.type="text/css";for(j in d)e.setAttribute(j,d[j]);g||(n.parentNode.insertBefore(e,n),m(c,0))}})(this,document); | ||||
| Modernizr.load=function(){yepnope.apply(window,[].slice.call(arguments,0));}; | ||||
| ;  | ||||
|  | @ -1,732 +0,0 @@ | |||
| /* | ||||
|  * Foundation Responsive Library | ||||
|  * http://foundation.zurb.com
 | ||||
|  * Copyright 2015, ZURB | ||||
|  * Free to use under the MIT license. | ||||
|  * http://www.opensource.org/licenses/mit-license.php
 | ||||
| */ | ||||
| 
 | ||||
| (function ($, window, document, undefined) { | ||||
|   'use strict'; | ||||
| 
 | ||||
|   var header_helpers = function (class_array) { | ||||
|     var head = $('head'); | ||||
|     head.prepend($.map(class_array, function (class_name) { | ||||
|       if (head.has('.' + class_name).length === 0) { | ||||
|         return '<meta class="' + class_name + '" />'; | ||||
|       } | ||||
|     })); | ||||
|   }; | ||||
| 
 | ||||
|   header_helpers([ | ||||
|     'foundation-mq-small', | ||||
|     'foundation-mq-small-only', | ||||
|     'foundation-mq-medium', | ||||
|     'foundation-mq-medium-only', | ||||
|     'foundation-mq-large', | ||||
|     'foundation-mq-large-only', | ||||
|     'foundation-mq-xlarge', | ||||
|     'foundation-mq-xlarge-only', | ||||
|     'foundation-mq-xxlarge', | ||||
|     'foundation-data-attribute-namespace']); | ||||
| 
 | ||||
|   // Enable FastClick if present
 | ||||
| 
 | ||||
|   $(function () { | ||||
|     if (typeof FastClick !== 'undefined') { | ||||
|       // Don't attach to body if undefined
 | ||||
|       if (typeof document.body !== 'undefined') { | ||||
|         FastClick.attach(document.body); | ||||
|       } | ||||
|     } | ||||
|   }); | ||||
| 
 | ||||
|   // private Fast Selector wrapper,
 | ||||
|   // returns jQuery object. Only use where
 | ||||
|   // getElementById is not available.
 | ||||
|   var S = function (selector, context) { | ||||
|     if (typeof selector === 'string') { | ||||
|       if (context) { | ||||
|         var cont; | ||||
|         if (context.jquery) { | ||||
|           cont = context[0]; | ||||
|           if (!cont) { | ||||
|             return context; | ||||
|           } | ||||
|         } else { | ||||
|           cont = context; | ||||
|         } | ||||
|         return $(cont.querySelectorAll(selector)); | ||||
|       } | ||||
| 
 | ||||
|       return $(document.querySelectorAll(selector)); | ||||
|     } | ||||
| 
 | ||||
|     return $(selector, context); | ||||
|   }; | ||||
| 
 | ||||
|   // Namespace functions.
 | ||||
| 
 | ||||
|   var attr_name = function (init) { | ||||
|     var arr = []; | ||||
|     if (!init) { | ||||
|       arr.push('data'); | ||||
|     } | ||||
|     if (this.namespace.length > 0) { | ||||
|       arr.push(this.namespace); | ||||
|     } | ||||
|     arr.push(this.name); | ||||
| 
 | ||||
|     return arr.join('-'); | ||||
|   }; | ||||
| 
 | ||||
|   var add_namespace = function (str) { | ||||
|     var parts = str.split('-'), | ||||
|         i = parts.length, | ||||
|         arr = []; | ||||
| 
 | ||||
|     while (i--) { | ||||
|       if (i !== 0) { | ||||
|         arr.push(parts[i]); | ||||
|       } else { | ||||
|         if (this.namespace.length > 0) { | ||||
|           arr.push(this.namespace, parts[i]); | ||||
|         } else { | ||||
|           arr.push(parts[i]); | ||||
|         } | ||||
|       } | ||||
|     } | ||||
| 
 | ||||
|     return arr.reverse().join('-'); | ||||
|   }; | ||||
| 
 | ||||
|   // Event binding and data-options updating.
 | ||||
| 
 | ||||
|   var bindings = function (method, options) { | ||||
|     var self = this, | ||||
|         bind = function(){ | ||||
|           var $this = S(this), | ||||
|               should_bind_events = !$this.data(self.attr_name(true) + '-init'); | ||||
|           $this.data(self.attr_name(true) + '-init', $.extend({}, self.settings, (options || method), self.data_options($this))); | ||||
| 
 | ||||
|           if (should_bind_events) { | ||||
|             self.events(this); | ||||
|           } | ||||
|         }; | ||||
| 
 | ||||
|     if (S(this.scope).is('[' + this.attr_name() +']')) { | ||||
|       bind.call(this.scope); | ||||
|     } else { | ||||
|       S('[' + this.attr_name() +']', this.scope).each(bind); | ||||
|     } | ||||
|     // # Patch to fix #5043 to move this *after* the if/else clause in order for Backbone and similar frameworks to have improved control over event binding and data-options updating.
 | ||||
|     if (typeof method === 'string') { | ||||
|       return this[method].call(this, options); | ||||
|     } | ||||
| 
 | ||||
|   }; | ||||
| 
 | ||||
|   var single_image_loaded = function (image, callback) { | ||||
|     function loaded () { | ||||
|       callback(image[0]); | ||||
|     } | ||||
| 
 | ||||
|     function bindLoad () { | ||||
|       this.one('load', loaded); | ||||
| 
 | ||||
|       if (/MSIE (\d+\.\d+);/.test(navigator.userAgent)) { | ||||
|         var src = this.attr( 'src' ), | ||||
|             param = src.match( /\?/ ) ? '&' : '?'; | ||||
| 
 | ||||
|         param += 'random=' + (new Date()).getTime(); | ||||
|         this.attr('src', src + param); | ||||
|       } | ||||
|     } | ||||
| 
 | ||||
|     if (!image.attr('src')) { | ||||
|       loaded(); | ||||
|       return; | ||||
|     } | ||||
| 
 | ||||
|     if (image[0].complete || image[0].readyState === 4) { | ||||
|       loaded(); | ||||
|     } else { | ||||
|       bindLoad.call(image); | ||||
|     } | ||||
|   }; | ||||
| 
 | ||||
|   /*! matchMedia() polyfill - Test a CSS media type/query in JS. Authors & copyright (c) 2012: Scott Jehl, Paul Irish, Nicholas Zakas, David Knight. Dual MIT/BSD license */ | ||||
| 
 | ||||
|   window.matchMedia || (window.matchMedia = function() { | ||||
|       "use strict"; | ||||
| 
 | ||||
|       // For browsers that support matchMedium api such as IE 9 and webkit
 | ||||
|       var styleMedia = (window.styleMedia || window.media); | ||||
| 
 | ||||
|       // For those that don't support matchMedium
 | ||||
|       if (!styleMedia) { | ||||
|           var style       = document.createElement('style'), | ||||
|               script      = document.getElementsByTagName('script')[0], | ||||
|               info        = null; | ||||
| 
 | ||||
|           style.type  = 'text/css'; | ||||
|           style.id    = 'matchmediajs-test'; | ||||
| 
 | ||||
|           script.parentNode.insertBefore(style, script); | ||||
| 
 | ||||
|           // 'style.currentStyle' is used by IE <= 8 and 'window.getComputedStyle' for all other browsers
 | ||||
|           info = ('getComputedStyle' in window) && window.getComputedStyle(style, null) || style.currentStyle; | ||||
| 
 | ||||
|           styleMedia = { | ||||
|               matchMedium: function(media) { | ||||
|                   var text = '@media ' + media + '{ #matchmediajs-test { width: 1px; } }'; | ||||
| 
 | ||||
|                   // 'style.styleSheet' is used by IE <= 8 and 'style.textContent' for all other browsers
 | ||||
|                   if (style.styleSheet) { | ||||
|                       style.styleSheet.cssText = text; | ||||
|                   } else { | ||||
|                       style.textContent = text; | ||||
|                   } | ||||
| 
 | ||||
|                   // Test if media query is true or false
 | ||||
|                   return info.width === '1px'; | ||||
|               } | ||||
|           }; | ||||
|       } | ||||
| 
 | ||||
|       return function(media) { | ||||
|           return { | ||||
|               matches: styleMedia.matchMedium(media || 'all'), | ||||
|               media: media || 'all' | ||||
|           }; | ||||
|       }; | ||||
|   }()); | ||||
| 
 | ||||
|   /* | ||||
|    * jquery.requestAnimationFrame | ||||
|    * https://github.com/gnarf37/jquery-requestAnimationFrame
 | ||||
|    * Requires jQuery 1.8+ | ||||
|    * | ||||
|    * Copyright (c) 2012 Corey Frang | ||||
|    * Licensed under the MIT license. | ||||
|    */ | ||||
| 
 | ||||
|   (function(jQuery) { | ||||
| 
 | ||||
| 
 | ||||
|   // requestAnimationFrame polyfill adapted from Erik Möller
 | ||||
|   // fixes from Paul Irish and Tino Zijdel
 | ||||
|   // http://paulirish.com/2011/requestanimationframe-for-smart-animating/
 | ||||
|   // http://my.opera.com/emoller/blog/2011/12/20/requestanimationframe-for-smart-er-animating
 | ||||
| 
 | ||||
|   var animating, | ||||
|       lastTime = 0, | ||||
|       vendors = ['webkit', 'moz'], | ||||
|       requestAnimationFrame = window.requestAnimationFrame, | ||||
|       cancelAnimationFrame = window.cancelAnimationFrame, | ||||
|       jqueryFxAvailable = 'undefined' !== typeof jQuery.fx; | ||||
| 
 | ||||
|   for (; lastTime < vendors.length && !requestAnimationFrame; lastTime++) { | ||||
|     requestAnimationFrame = window[ vendors[lastTime] + 'RequestAnimationFrame' ]; | ||||
|     cancelAnimationFrame = cancelAnimationFrame || | ||||
|       window[ vendors[lastTime] + 'CancelAnimationFrame' ] || | ||||
|       window[ vendors[lastTime] + 'CancelRequestAnimationFrame' ]; | ||||
|   } | ||||
| 
 | ||||
|   function raf() { | ||||
|     if (animating) { | ||||
|       requestAnimationFrame(raf); | ||||
| 
 | ||||
|       if (jqueryFxAvailable) { | ||||
|         jQuery.fx.tick(); | ||||
|       } | ||||
|     } | ||||
|   } | ||||
| 
 | ||||
|   if (requestAnimationFrame) { | ||||
|     // use rAF
 | ||||
|     window.requestAnimationFrame = requestAnimationFrame; | ||||
|     window.cancelAnimationFrame = cancelAnimationFrame; | ||||
| 
 | ||||
|     if (jqueryFxAvailable) { | ||||
|       jQuery.fx.timer = function (timer) { | ||||
|         if (timer() && jQuery.timers.push(timer) && !animating) { | ||||
|           animating = true; | ||||
|           raf(); | ||||
|         } | ||||
|       }; | ||||
| 
 | ||||
|       jQuery.fx.stop = function () { | ||||
|         animating = false; | ||||
|       }; | ||||
|     } | ||||
|   } else { | ||||
|     // polyfill
 | ||||
|     window.requestAnimationFrame = function (callback) { | ||||
|       var currTime = new Date().getTime(), | ||||
|         timeToCall = Math.max(0, 16 - (currTime - lastTime)), | ||||
|         id = window.setTimeout(function () { | ||||
|           callback(currTime + timeToCall); | ||||
|         }, timeToCall); | ||||
|       lastTime = currTime + timeToCall; | ||||
|       return id; | ||||
|     }; | ||||
| 
 | ||||
|     window.cancelAnimationFrame = function (id) { | ||||
|       clearTimeout(id); | ||||
|     }; | ||||
| 
 | ||||
|   } | ||||
| 
 | ||||
|   }( $ )); | ||||
| 
 | ||||
|   function removeQuotes (string) { | ||||
|     if (typeof string === 'string' || string instanceof String) { | ||||
|       string = string.replace(/^['\\/"]+|(;\s?})+|['\\/"]+$/g, ''); | ||||
|     } | ||||
| 
 | ||||
|     return string; | ||||
|   } | ||||
| 
 | ||||
|   function MediaQuery(selector) { | ||||
|     this.selector = selector; | ||||
|     this.query = ''; | ||||
|   } | ||||
| 
 | ||||
|   MediaQuery.prototype.toString = function () { | ||||
|     return this.query || (this.query = S(this.selector).css('font-family').replace(/^[\/\\'"]+|(;\s?})+|[\/\\'"]+$/g, '')); | ||||
|   }; | ||||
| 
 | ||||
|   window.Foundation = { | ||||
|     name : 'Foundation', | ||||
| 
 | ||||
|     version : '5.5.3', | ||||
| 
 | ||||
|     media_queries : { | ||||
|       'small'       : new MediaQuery('.foundation-mq-small'), | ||||
|       'small-only'  : new MediaQuery('.foundation-mq-small-only'), | ||||
|       'medium'      : new MediaQuery('.foundation-mq-medium'), | ||||
|       'medium-only' : new MediaQuery('.foundation-mq-medium-only'), | ||||
|       'large'       : new MediaQuery('.foundation-mq-large'), | ||||
|       'large-only'  : new MediaQuery('.foundation-mq-large-only'), | ||||
|       'xlarge'      : new MediaQuery('.foundation-mq-xlarge'), | ||||
|       'xlarge-only' : new MediaQuery('.foundation-mq-xlarge-only'), | ||||
|       'xxlarge'     : new MediaQuery('.foundation-mq-xxlarge') | ||||
|     }, | ||||
| 
 | ||||
|     stylesheet : $('<style></style>').appendTo('head')[0].sheet, | ||||
| 
 | ||||
|     global : { | ||||
|       namespace : undefined | ||||
|     }, | ||||
| 
 | ||||
|     init : function (scope, libraries, method, options, response) { | ||||
|       var args = [scope, method, options, response], | ||||
|           responses = []; | ||||
| 
 | ||||
|       // check RTL
 | ||||
|       this.rtl = /rtl/i.test(S('html').attr('dir')); | ||||
| 
 | ||||
|       // set foundation global scope
 | ||||
|       this.scope = scope || this.scope; | ||||
| 
 | ||||
|       this.set_namespace(); | ||||
| 
 | ||||
|       if (libraries && typeof libraries === 'string' && !/reflow/i.test(libraries)) { | ||||
|         if (this.libs.hasOwnProperty(libraries)) { | ||||
|           responses.push(this.init_lib(libraries, args)); | ||||
|         } | ||||
|       } else { | ||||
|         for (var lib in this.libs) { | ||||
|           responses.push(this.init_lib(lib, libraries)); | ||||
|         } | ||||
|       } | ||||
| 
 | ||||
|       S(window).load(function () { | ||||
|         S(window) | ||||
|           .trigger('resize.fndtn.clearing') | ||||
|           .trigger('resize.fndtn.dropdown') | ||||
|           .trigger('resize.fndtn.equalizer') | ||||
|           .trigger('resize.fndtn.interchange') | ||||
|           .trigger('resize.fndtn.joyride') | ||||
|           .trigger('resize.fndtn.magellan') | ||||
|           .trigger('resize.fndtn.topbar') | ||||
|           .trigger('resize.fndtn.slider'); | ||||
|       }); | ||||
| 
 | ||||
|       return scope; | ||||
|     }, | ||||
| 
 | ||||
|     init_lib : function (lib, args) { | ||||
|       if (this.libs.hasOwnProperty(lib)) { | ||||
|         this.patch(this.libs[lib]); | ||||
| 
 | ||||
|         if (args && args.hasOwnProperty(lib)) { | ||||
|             if (typeof this.libs[lib].settings !== 'undefined') { | ||||
|               $.extend(true, this.libs[lib].settings, args[lib]); | ||||
|             } else if (typeof this.libs[lib].defaults !== 'undefined') { | ||||
|               $.extend(true, this.libs[lib].defaults, args[lib]); | ||||
|             } | ||||
|           return this.libs[lib].init.apply(this.libs[lib], [this.scope, args[lib]]); | ||||
|         } | ||||
| 
 | ||||
|         args = args instanceof Array ? args : new Array(args); | ||||
|         return this.libs[lib].init.apply(this.libs[lib], args); | ||||
|       } | ||||
| 
 | ||||
|       return function () {}; | ||||
|     }, | ||||
| 
 | ||||
|     patch : function (lib) { | ||||
|       lib.scope = this.scope; | ||||
|       lib.namespace = this.global.namespace; | ||||
|       lib.rtl = this.rtl; | ||||
|       lib['data_options'] = this.utils.data_options; | ||||
|       lib['attr_name'] = attr_name; | ||||
|       lib['add_namespace'] = add_namespace; | ||||
|       lib['bindings'] = bindings; | ||||
|       lib['S'] = this.utils.S; | ||||
|     }, | ||||
| 
 | ||||
|     inherit : function (scope, methods) { | ||||
|       var methods_arr = methods.split(' '), | ||||
|           i = methods_arr.length; | ||||
| 
 | ||||
|       while (i--) { | ||||
|         if (this.utils.hasOwnProperty(methods_arr[i])) { | ||||
|           scope[methods_arr[i]] = this.utils[methods_arr[i]]; | ||||
|         } | ||||
|       } | ||||
|     }, | ||||
| 
 | ||||
|     set_namespace : function () { | ||||
| 
 | ||||
|       // Description:
 | ||||
|       //    Don't bother reading the namespace out of the meta tag
 | ||||
|       //    if the namespace has been set globally in javascript
 | ||||
|       //
 | ||||
|       // Example:
 | ||||
|       //    Foundation.global.namespace = 'my-namespace';
 | ||||
|       // or make it an empty string:
 | ||||
|       //    Foundation.global.namespace = '';
 | ||||
|       //
 | ||||
|       //
 | ||||
| 
 | ||||
|       // If the namespace has not been set (is undefined), try to read it out of the meta element.
 | ||||
|       // Otherwise use the globally defined namespace, even if it's empty ('')
 | ||||
|       var namespace = ( this.global.namespace === undefined ) ? $('.foundation-data-attribute-namespace').css('font-family') : this.global.namespace; | ||||
| 
 | ||||
|       // Finally, if the namsepace is either undefined or false, set it to an empty string.
 | ||||
|       // Otherwise use the namespace value.
 | ||||
|       this.global.namespace = ( namespace === undefined || /false/i.test(namespace) ) ? '' : namespace; | ||||
|     }, | ||||
| 
 | ||||
|     libs : {}, | ||||
| 
 | ||||
|     // methods that can be inherited in libraries
 | ||||
|     utils : { | ||||
| 
 | ||||
|       // Description:
 | ||||
|       //    Fast Selector wrapper returns jQuery object. Only use where getElementById
 | ||||
|       //    is not available.
 | ||||
|       //
 | ||||
|       // Arguments:
 | ||||
|       //    Selector (String): CSS selector describing the element(s) to be
 | ||||
|       //    returned as a jQuery object.
 | ||||
|       //
 | ||||
|       //    Scope (String): CSS selector describing the area to be searched. Default
 | ||||
|       //    is document.
 | ||||
|       //
 | ||||
|       // Returns:
 | ||||
|       //    Element (jQuery Object): jQuery object containing elements matching the
 | ||||
|       //    selector within the scope.
 | ||||
|       S : S, | ||||
| 
 | ||||
|       // Description:
 | ||||
|       //    Executes a function a max of once every n milliseconds
 | ||||
|       //
 | ||||
|       // Arguments:
 | ||||
|       //    Func (Function): Function to be throttled.
 | ||||
|       //
 | ||||
|       //    Delay (Integer): Function execution threshold in milliseconds.
 | ||||
|       //
 | ||||
|       // Returns:
 | ||||
|       //    Lazy_function (Function): Function with throttling applied.
 | ||||
|       throttle : function (func, delay) { | ||||
|         var timer = null; | ||||
| 
 | ||||
|         return function () { | ||||
|           var context = this, args = arguments; | ||||
| 
 | ||||
|           if (timer == null) { | ||||
|             timer = setTimeout(function () { | ||||
|               func.apply(context, args); | ||||
|               timer = null; | ||||
|             }, delay); | ||||
|           } | ||||
|         }; | ||||
|       }, | ||||
| 
 | ||||
|       // Description:
 | ||||
|       //    Executes a function when it stops being invoked for n seconds
 | ||||
|       //    Modified version of _.debounce() http://underscorejs.org
 | ||||
|       //
 | ||||
|       // Arguments:
 | ||||
|       //    Func (Function): Function to be debounced.
 | ||||
|       //
 | ||||
|       //    Delay (Integer): Function execution threshold in milliseconds.
 | ||||
|       //
 | ||||
|       //    Immediate (Bool): Whether the function should be called at the beginning
 | ||||
|       //    of the delay instead of the end. Default is false.
 | ||||
|       //
 | ||||
|       // Returns:
 | ||||
|       //    Lazy_function (Function): Function with debouncing applied.
 | ||||
|       debounce : function (func, delay, immediate) { | ||||
|         var timeout, result; | ||||
|         return function () { | ||||
|           var context = this, args = arguments; | ||||
|           var later = function () { | ||||
|             timeout = null; | ||||
|             if (!immediate) { | ||||
|               result = func.apply(context, args); | ||||
|             } | ||||
|           }; | ||||
|           var callNow = immediate && !timeout; | ||||
|           clearTimeout(timeout); | ||||
|           timeout = setTimeout(later, delay); | ||||
|           if (callNow) { | ||||
|             result = func.apply(context, args); | ||||
|           } | ||||
|           return result; | ||||
|         }; | ||||
|       }, | ||||
| 
 | ||||
|       // Description:
 | ||||
|       //    Parses data-options attribute
 | ||||
|       //
 | ||||
|       // Arguments:
 | ||||
|       //    El (jQuery Object): Element to be parsed.
 | ||||
|       //
 | ||||
|       // Returns:
 | ||||
|       //    Options (Javascript Object): Contents of the element's data-options
 | ||||
|       //    attribute.
 | ||||
|       data_options : function (el, data_attr_name) { | ||||
|         data_attr_name = data_attr_name || 'options'; | ||||
|         var opts = {}, ii, p, opts_arr, | ||||
|             data_options = function (el) { | ||||
|               var namespace = Foundation.global.namespace; | ||||
| 
 | ||||
|               if (namespace.length > 0) { | ||||
|                 return el.data(namespace + '-' + data_attr_name); | ||||
|               } | ||||
| 
 | ||||
|               return el.data(data_attr_name); | ||||
|             }; | ||||
| 
 | ||||
|         var cached_options = data_options(el); | ||||
| 
 | ||||
|         if (typeof cached_options === 'object') { | ||||
|           return cached_options; | ||||
|         } | ||||
| 
 | ||||
|         opts_arr = (cached_options || ':').split(';'); | ||||
|         ii = opts_arr.length; | ||||
| 
 | ||||
|         function isNumber (o) { | ||||
|           return !isNaN (o - 0) && o !== null && o !== '' && o !== false && o !== true; | ||||
|         } | ||||
| 
 | ||||
|         function trim (str) { | ||||
|           if (typeof str === 'string') { | ||||
|             return $.trim(str); | ||||
|           } | ||||
|           return str; | ||||
|         } | ||||
| 
 | ||||
|         while (ii--) { | ||||
|           p = opts_arr[ii].split(':'); | ||||
|           p = [p[0], p.slice(1).join(':')]; | ||||
| 
 | ||||
|           if (/true/i.test(p[1])) { | ||||
|             p[1] = true; | ||||
|           } | ||||
|           if (/false/i.test(p[1])) { | ||||
|             p[1] = false; | ||||
|           } | ||||
|           if (isNumber(p[1])) { | ||||
|             if (p[1].indexOf('.') === -1) { | ||||
|               p[1] = parseInt(p[1], 10); | ||||
|             } else { | ||||
|               p[1] = parseFloat(p[1]); | ||||
|             } | ||||
|           } | ||||
| 
 | ||||
|           if (p.length === 2 && p[0].length > 0) { | ||||
|             opts[trim(p[0])] = trim(p[1]); | ||||
|           } | ||||
|         } | ||||
| 
 | ||||
|         return opts; | ||||
|       }, | ||||
| 
 | ||||
|       // Description:
 | ||||
|       //    Adds JS-recognizable media queries
 | ||||
|       //
 | ||||
|       // Arguments:
 | ||||
|       //    Media (String): Key string for the media query to be stored as in
 | ||||
|       //    Foundation.media_queries
 | ||||
|       //
 | ||||
|       //    Class (String): Class name for the generated <meta> tag
 | ||||
|       register_media : function (media, media_class) { | ||||
|         if (Foundation.media_queries[media] === undefined) { | ||||
|           $('head').append('<meta class="' + media_class + '"/>'); | ||||
|           Foundation.media_queries[media] = removeQuotes($('.' + media_class).css('font-family')); | ||||
|         } | ||||
|       }, | ||||
| 
 | ||||
|       // Description:
 | ||||
|       //    Add custom CSS within a JS-defined media query
 | ||||
|       //
 | ||||
|       // Arguments:
 | ||||
|       //    Rule (String): CSS rule to be appended to the document.
 | ||||
|       //
 | ||||
|       //    Media (String): Optional media query string for the CSS rule to be
 | ||||
|       //    nested under.
 | ||||
|       add_custom_rule : function (rule, media) { | ||||
|         if (media === undefined && Foundation.stylesheet) { | ||||
|           Foundation.stylesheet.insertRule(rule, Foundation.stylesheet.cssRules.length); | ||||
|         } else { | ||||
|           var query = Foundation.media_queries[media]; | ||||
| 
 | ||||
|           if (query !== undefined) { | ||||
|             Foundation.stylesheet.insertRule('@media ' + | ||||
|               Foundation.media_queries[media] + '{ ' + rule + ' }', Foundation.stylesheet.cssRules.length); | ||||
|           } | ||||
|         } | ||||
|       }, | ||||
| 
 | ||||
|       // Description:
 | ||||
|       //    Performs a callback function when an image is fully loaded
 | ||||
|       //
 | ||||
|       // Arguments:
 | ||||
|       //    Image (jQuery Object): Image(s) to check if loaded.
 | ||||
|       //
 | ||||
|       //    Callback (Function): Function to execute when image is fully loaded.
 | ||||
|       image_loaded : function (images, callback) { | ||||
|         var self = this, | ||||
|             unloaded = images.length; | ||||
| 
 | ||||
|         function pictures_has_height(images) { | ||||
|           var pictures_number = images.length; | ||||
| 
 | ||||
|           for (var i = pictures_number - 1; i >= 0; i--) { | ||||
|             if(images.attr('height') === undefined) { | ||||
|               return false; | ||||
|             }; | ||||
|           }; | ||||
| 
 | ||||
|           return true; | ||||
|         } | ||||
| 
 | ||||
|         if (unloaded === 0 || pictures_has_height(images)) { | ||||
|           callback(images); | ||||
|         } | ||||
| 
 | ||||
|         images.each(function () { | ||||
|           single_image_loaded(self.S(this), function () { | ||||
|             unloaded -= 1; | ||||
|             if (unloaded === 0) { | ||||
|               callback(images); | ||||
|             } | ||||
|           }); | ||||
|         }); | ||||
|       }, | ||||
| 
 | ||||
|       // Description:
 | ||||
|       //    Returns a random, alphanumeric string
 | ||||
|       //
 | ||||
|       // Arguments:
 | ||||
|       //    Length (Integer): Length of string to be generated. Defaults to random
 | ||||
|       //    integer.
 | ||||
|       //
 | ||||
|       // Returns:
 | ||||
|       //    Rand (String): Pseudo-random, alphanumeric string.
 | ||||
|       random_str : function () { | ||||
|         if (!this.fidx) { | ||||
|           this.fidx = 0; | ||||
|         } | ||||
|         this.prefix = this.prefix || [(this.name || 'F'), (+new Date).toString(36)].join('-'); | ||||
| 
 | ||||
|         return this.prefix + (this.fidx++).toString(36); | ||||
|       }, | ||||
| 
 | ||||
|       // Description:
 | ||||
|       //    Helper for window.matchMedia
 | ||||
|       //
 | ||||
|       // Arguments:
 | ||||
|       //    mq (String): Media query
 | ||||
|       //
 | ||||
|       // Returns:
 | ||||
|       //    (Boolean): Whether the media query passes or not
 | ||||
|       match : function (mq) { | ||||
|         return window.matchMedia(mq).matches; | ||||
|       }, | ||||
| 
 | ||||
|       // Description:
 | ||||
|       //    Helpers for checking Foundation default media queries with JS
 | ||||
|       //
 | ||||
|       // Returns:
 | ||||
|       //    (Boolean): Whether the media query passes or not
 | ||||
| 
 | ||||
|       is_small_up : function () { | ||||
|         return this.match(Foundation.media_queries.small); | ||||
|       }, | ||||
| 
 | ||||
|       is_medium_up : function () { | ||||
|         return this.match(Foundation.media_queries.medium); | ||||
|       }, | ||||
| 
 | ||||
|       is_large_up : function () { | ||||
|         return this.match(Foundation.media_queries.large); | ||||
|       }, | ||||
| 
 | ||||
|       is_xlarge_up : function () { | ||||
|         return this.match(Foundation.media_queries.xlarge); | ||||
|       }, | ||||
| 
 | ||||
|       is_xxlarge_up : function () { | ||||
|         return this.match(Foundation.media_queries.xxlarge); | ||||
|       }, | ||||
| 
 | ||||
|       is_small_only : function () { | ||||
|         return !this.is_medium_up() && !this.is_large_up() && !this.is_xlarge_up() && !this.is_xxlarge_up(); | ||||
|       }, | ||||
| 
 | ||||
|       is_medium_only : function () { | ||||
|         return this.is_medium_up() && !this.is_large_up() && !this.is_xlarge_up() && !this.is_xxlarge_up(); | ||||
|       }, | ||||
| 
 | ||||
|       is_large_only : function () { | ||||
|         return this.is_medium_up() && this.is_large_up() && !this.is_xlarge_up() && !this.is_xxlarge_up(); | ||||
|       }, | ||||
| 
 | ||||
|       is_xlarge_only : function () { | ||||
|         return this.is_medium_up() && this.is_large_up() && this.is_xlarge_up() && !this.is_xxlarge_up(); | ||||
|       }, | ||||
| 
 | ||||
|       is_xxlarge_only : function () { | ||||
|         return this.is_medium_up() && this.is_large_up() && this.is_xlarge_up() && this.is_xxlarge_up(); | ||||
|       } | ||||
|     } | ||||
|   }; | ||||
| 
 | ||||
|   $.fn.foundation = function () { | ||||
|     var args = Array.prototype.slice.call(arguments, 0); | ||||
| 
 | ||||
|     return this.each(function () { | ||||
|       Foundation.init.apply(Foundation, [this].concat(args)); | ||||
|       return this; | ||||
|     }); | ||||
|   }; | ||||
| 
 | ||||
| }(jQuery, window, window.document)); | ||||
|  | @ -233,8 +233,6 @@ function display_LoginPage(LAMConfig $config_object, LAMCfgMain $cfgMain, $licen | |||
| 	foreach ($jsFiles as $jsEntry) { | ||||
| 		echo "<script type=\"text/javascript\" src=\"lib/" . $jsEntry . "\"></script>\n"; | ||||
| 	} | ||||
| 	echo "<script type=\"text/javascript\" src=\"lib/extra/responsive/200_modernizr.js\"></script>\n"; | ||||
| 	echo "<script type=\"text/javascript\" src=\"lib/extra/responsive/250_foundation.js\"></script>\n"; | ||||
| 
 | ||||
| 	// upgrade if pdf/profiles contain single files
 | ||||
| 	if (containsFiles('../config/profiles') || containsFiles('../config/pdf')) { | ||||
|  |  | |||
|  | @ -164,8 +164,6 @@ foreach ($jsFiles as $jsEntry) { | |||
| } | ||||
| ?>
 | ||||
| 
 | ||||
| 	<script type="text/javascript" src="lib/extra/responsive/200_modernizr.js"></script> | ||||
| 	<script type="text/javascript" src="lib/extra/responsive/250_foundation.js"></script> | ||||
| 	<table border=0 width="100%" class="lamHeader ui-corner-all"> | ||||
| 		<tr> | ||||
| 			<td align="left" height="30"> | ||||
|  |  | |||
		Loading…
	
		Reference in New Issue