forked from Docker/baseimage-docker
Remove unused Javascript files
This commit is contained in:
1426
assets/js/Chart.js
vendored
1426
assets/js/Chart.js
vendored
File diff suppressed because it is too large
Load Diff
1999
assets/js/bootstrap.js
vendored
1999
assets/js/bootstrap.js
vendored
File diff suppressed because it is too large
Load Diff
6
assets/js/bootstrap.min.js
vendored
6
assets/js/bootstrap.min.js
vendored
File diff suppressed because one or more lines are too long
@@ -1,70 +0,0 @@
|
|||||||
/*!
|
|
||||||
* classie - class helper functions
|
|
||||||
* from bonzo https://github.com/ded/bonzo
|
|
||||||
*
|
|
||||||
* classie.has( elem, 'my-class' ) -> true/false
|
|
||||||
* classie.add( elem, 'my-new-class' )
|
|
||||||
* classie.remove( elem, 'my-unwanted-class' )
|
|
||||||
* classie.toggle( elem, 'my-class' )
|
|
||||||
*/
|
|
||||||
|
|
||||||
/*jshint browser: true, strict: true, undef: true */
|
|
||||||
|
|
||||||
( function( window ) {
|
|
||||||
|
|
||||||
'use strict';
|
|
||||||
|
|
||||||
// class helper functions from bonzo https://github.com/ded/bonzo
|
|
||||||
|
|
||||||
function classReg( className ) {
|
|
||||||
return new RegExp("(^|\\s+)" + className + "(\\s+|$)");
|
|
||||||
}
|
|
||||||
|
|
||||||
// classList support for class management
|
|
||||||
// altho to be fair, the api sucks because it won't accept multiple classes at once
|
|
||||||
var hasClass, addClass, removeClass;
|
|
||||||
|
|
||||||
if ( 'classList' in document.documentElement ) {
|
|
||||||
hasClass = function( elem, c ) {
|
|
||||||
return elem.classList.contains( c );
|
|
||||||
};
|
|
||||||
addClass = function( elem, c ) {
|
|
||||||
elem.classList.add( c );
|
|
||||||
};
|
|
||||||
removeClass = function( elem, c ) {
|
|
||||||
elem.classList.remove( c );
|
|
||||||
};
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
hasClass = function( elem, c ) {
|
|
||||||
return classReg( c ).test( elem.className );
|
|
||||||
};
|
|
||||||
addClass = function( elem, c ) {
|
|
||||||
if ( !hasClass( elem, c ) ) {
|
|
||||||
elem.className = elem.className + ' ' + c;
|
|
||||||
}
|
|
||||||
};
|
|
||||||
removeClass = function( elem, c ) {
|
|
||||||
elem.className = elem.className.replace( classReg( c ), ' ' );
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
function toggleClass( elem, c ) {
|
|
||||||
var fn = hasClass( elem, c ) ? removeClass : addClass;
|
|
||||||
fn( elem, c );
|
|
||||||
}
|
|
||||||
|
|
||||||
window.classie = {
|
|
||||||
// full names
|
|
||||||
hasClass: hasClass,
|
|
||||||
addClass: addClass,
|
|
||||||
removeClass: removeClass,
|
|
||||||
toggleClass: toggleClass,
|
|
||||||
// short names
|
|
||||||
has: hasClass,
|
|
||||||
add: addClass,
|
|
||||||
remove: removeClass,
|
|
||||||
toggle: toggleClass
|
|
||||||
};
|
|
||||||
|
|
||||||
})( window );
|
|
||||||
5
assets/js/jquery.min.js
vendored
5
assets/js/jquery.min.js
vendored
File diff suppressed because one or more lines are too long
@@ -1,11 +0,0 @@
|
|||||||
;(function(){
|
|
||||||
|
|
||||||
// Menu settings
|
|
||||||
$('#menuToggle, .menu-close').on('click', function(){
|
|
||||||
$('#menuToggle').toggleClass('active');
|
|
||||||
$('body').toggleClass('body-push-toleft');
|
|
||||||
$('#theMenu').toggleClass('menu-open');
|
|
||||||
});
|
|
||||||
|
|
||||||
|
|
||||||
})(jQuery)
|
|
||||||
@@ -1,33 +0,0 @@
|
|||||||
/**
|
|
||||||
* SmoothScroll
|
|
||||||
* This helper script created by DWUser.com. Copyright 2013 DWUser.com.
|
|
||||||
* Dual-licensed under the GPL and MIT licenses.
|
|
||||||
* All individual scripts remain property of their copyrighters.
|
|
||||||
* Date: 10-Sep-2013
|
|
||||||
* Version: 1.0.1
|
|
||||||
*/
|
|
||||||
if (!window['jQuery']) alert('The jQuery library must be included before the smoothscroll.js file. The plugin will not work propery.');
|
|
||||||
|
|
||||||
/**
|
|
||||||
* jQuery.ScrollTo - Easy element scrolling using jQuery.
|
|
||||||
* Copyright (c) 2007-2013 Ariel Flesler - aflesler(at)gmail(dot)com | http://flesler.blogspot.com
|
|
||||||
* Dual licensed under MIT and GPL.
|
|
||||||
* @author Ariel Flesler
|
|
||||||
* @version 1.4.3.1
|
|
||||||
*/
|
|
||||||
;(function($){var h=$.scrollTo=function(a,b,c){$(window).scrollTo(a,b,c)};h.defaults={axis:'xy',duration:parseFloat($.fn.jquery)>=1.3?0:1,limit:true};h.window=function(a){return $(window)._scrollable()};$.fn._scrollable=function(){return this.map(function(){var a=this,isWin=!a.nodeName||$.inArray(a.nodeName.toLowerCase(),['iframe','#document','html','body'])!=-1;if(!isWin)return a;var b=(a.contentWindow||a).document||a.ownerDocument||a;return/webkit/i.test(navigator.userAgent)||b.compatMode=='BackCompat'?b.body:b.documentElement})};$.fn.scrollTo=function(e,f,g){if(typeof f=='object'){g=f;f=0}if(typeof g=='function')g={onAfter:g};if(e=='max')e=9e9;g=$.extend({},h.defaults,g);f=f||g.duration;g.queue=g.queue&&g.axis.length>1;if(g.queue)f/=2;g.offset=both(g.offset);g.over=both(g.over);return this._scrollable().each(function(){if(e==null)return;var d=this,$elem=$(d),targ=e,toff,attr={},win=$elem.is('html,body');switch(typeof targ){case'number':case'string':if(/^([+-]=)?\d+(\.\d+)?(px|%)?$/.test(targ)){targ=both(targ);break}targ=$(targ,this);if(!targ.length)return;case'object':if(targ.is||targ.style)toff=(targ=$(targ)).offset()}$.each(g.axis.split(''),function(i,a){var b=a=='x'?'Left':'Top',pos=b.toLowerCase(),key='scroll'+b,old=d[key],max=h.max(d,a);if(toff){attr[key]=toff[pos]+(win?0:old-$elem.offset()[pos]);if(g.margin){attr[key]-=parseInt(targ.css('margin'+b))||0;attr[key]-=parseInt(targ.css('border'+b+'Width'))||0}attr[key]+=g.offset[pos]||0;if(g.over[pos])attr[key]+=targ[a=='x'?'width':'height']()*g.over[pos]}else{var c=targ[pos];attr[key]=c.slice&&c.slice(-1)=='%'?parseFloat(c)/100*max:c}if(g.limit&&/^\d+$/.test(attr[key]))attr[key]=attr[key]<=0?0:Math.min(attr[key],max);if(!i&&g.queue){if(old!=attr[key])animate(g.onAfterFirst);delete attr[key]}});animate(g.onAfter);function animate(a){$elem.animate(attr,f,g.easing,a&&function(){a.call(this,e,g)})}}).end()};h.max=function(a,b){var c=b=='x'?'Width':'Height',scroll='scroll'+c;if(!$(a).is('html,body'))return a[scroll]-$(a)[c.toLowerCase()]();var d='client'+c,html=a.ownerDocument.documentElement,body=a.ownerDocument.body;return Math.max(html[scroll],body[scroll])-Math.min(html[d],body[d])};function both(a){return typeof a=='object'?a:{top:a,left:a}}})(jQuery);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* jQuery.LocalScroll
|
|
||||||
* Copyright (c) 2007-2010 Ariel Flesler - aflesler(at)gmail(dot)com | http://flesler.blogspot.com
|
|
||||||
* Dual licensed under MIT and GPL.
|
|
||||||
* Date: 05/31/2010
|
|
||||||
* @author Ariel Flesler
|
|
||||||
* @version 1.2.8b
|
|
||||||
**/
|
|
||||||
;(function(b){function g(a,e,d){var h=e.hash.slice(1),f=document.getElementById(h)||document.getElementsByName(h)[0];if(f){a&&a.preventDefault();var c=b(d.target);if(!(d.lock&&c.is(":animated")||d.onBefore&&!1===d.onBefore(a,f,c))){d.stop&&c._scrollable().stop(!0);if(d.hash){var a=f.id==h?"id":"name",g=b("<a> </a>").attr(a,h).css({position:"absolute",top:b(window).scrollTop(),left:b(window).scrollLeft()});f[a]="";b("body").prepend(g);location=e.hash;g.remove();f[a]=h}c.scrollTo(f,d).trigger("notify.serialScroll",
|
|
||||||
[f])}}}var i=location.href.replace(/#.*/,""),c=b.localScroll=function(a){b("body").localScroll(a)};c.defaults={duration:1E3,axis:"y",event:"click",stop:!0,target:window,reset:!0};c.hash=function(a){if(location.hash){a=b.extend({},c.defaults,a);a.hash=!1;if(a.reset){var e=a.duration;delete a.duration;b(a.target).scrollTo(0,a);a.duration=e}g(0,location,a)}};b.fn.localScroll=function(a){function e(){return!!this.href&&!!this.hash&&this.href.replace(this.hash,"")==i&&(!a.filter||b(this).is(a.filter))}
|
|
||||||
a=b.extend({},c.defaults,a);return a.lazy?this.bind(a.event,function(d){var c=b([d.target,d.target.parentNode]).filter(e)[0];c&&g(d,c,a)}):this.find("a,area").filter(e).bind(a.event,function(b){g(b,this,a)}).end().end()}})(jQuery);
|
|
||||||
|
|
||||||
// Initialize all .smoothScroll links
|
|
||||||
jQuery(function($){ $.localScroll({filter:'.smoothScroll'}); });
|
|
||||||
21
index.html
21
index.html
@@ -15,22 +15,11 @@
|
|||||||
<!-- Custom styles for this template -->
|
<!-- Custom styles for this template -->
|
||||||
<link href="assets/css/main.css" rel="stylesheet">
|
<link href="assets/css/main.css" rel="stylesheet">
|
||||||
<link rel="stylesheet" href="assets/css/font-awesome.min.css">
|
<link rel="stylesheet" href="assets/css/font-awesome.min.css">
|
||||||
|
|
||||||
<script src="assets/js/jquery.min.js"></script>
|
|
||||||
<script src="assets/js/modernizr.custom.js"></script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<link href='http://fonts.googleapis.com/css?family=Oswald:400,300,700' rel='stylesheet' type='text/css'>
|
<link href='http://fonts.googleapis.com/css?family=Oswald:400,300,700' rel='stylesheet' type='text/css'>
|
||||||
<link href='http://fonts.googleapis.com/css?family=EB+Garamond' rel='stylesheet' type='text/css'>
|
<link href='http://fonts.googleapis.com/css?family=EB+Garamond' rel='stylesheet' type='text/css'>
|
||||||
<link href='http://fonts.googleapis.com/css?family=Open+Sans:600' rel='stylesheet' type='text/css'>
|
<link href='http://fonts.googleapis.com/css?family=Open+Sans:600' rel='stylesheet' type='text/css'>
|
||||||
|
|
||||||
<!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
|
|
||||||
<!--[if lt IE 9]>
|
|
||||||
<script src="assets/js/html5shiv.js"></script>
|
|
||||||
<script src="assets/js/respond.min.js"></script>
|
|
||||||
<![endif]-->
|
|
||||||
|
|
||||||
<style type="text/css">
|
<style type="text/css">
|
||||||
body {
|
body {
|
||||||
background-color: #3f3f3f;
|
background-color: #3f3f3f;
|
||||||
@@ -314,15 +303,5 @@ RUN apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*</pre>
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<!-- Bootstrap core JavaScript
|
|
||||||
================================================== -->
|
|
||||||
<!-- Placed at the end of the document so the pages load faster -->
|
|
||||||
<script src="assets/js/classie.js"></script>
|
|
||||||
<script src="assets/js/bootstrap.min.js"></script>
|
|
||||||
<script src="assets/js/smoothscroll.js"></script>
|
|
||||||
<script src="assets/js/main.js"></script>
|
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
Reference in New Issue
Block a user