From: Gabriel Dunne Date: Wed, 30 Apr 2014 06:28:06 +0000 (-0700) Subject: Cleaning out js cruft. X-Git-Url: https://git.quilime.com/?a=commitdiff_plain;h=b02e89839cec4f989156ccdccf3a1280acb92e01;p=notes.git Cleaning out js cruft. --- diff --git a/_layouts/default.html b/_layouts/default.html index a7ecdcc..124a153 100644 --- a/_layouts/default.html +++ b/_layouts/default.html @@ -6,53 +6,22 @@ {{ page.title }} - -
- - -
- - - -
-
- -
- {{ content }} -
+
+ {{ content }} +
+ + - - -
-
-
-
- - - - - - - - - + diff --git a/_layouts/post.html b/_layouts/post.html index 2a55bf2..3158f49 100644 --- a/_layouts/post.html +++ b/_layouts/post.html @@ -2,8 +2,8 @@ layout: default --- - + + \ No newline at end of file diff --git a/css/component.css b/css/component.css deleted file mode 100755 index 640f3e0..0000000 --- a/css/component.css +++ /dev/null @@ -1,145 +0,0 @@ -st-effect-3*, -*:after, -*::before { - -moz-box-sizing: border-box; - box-sizing: border-box; -} - -html, -body, -.st-container, -.st-pusher, -.st-content { - -} - -.st-content { - overflow-y: scroll; -} - -.st-content, -.st-content-inner { -} - -.st-container { - position: relative; -} - -.st-pusher { - position: relative; - left: 0; - z-index: 99; - height: 100%; - -webkit-transition: -webkit-transform 0.1s; - transition: transform 0.1s; -} - -.st-pusher::after { - position: absolute; - top: 0; - right: 0; - width: 0; - height: 0; - background: rgba(0,0,0,0.3); - content: ''; - opacity: 0; - -webkit-transition: opacity 0.1s, width 0.1s 0.1s, height 0.1s 0.1s; - transition: opacity 0.1s, width 0.1s 0.1s, height 0.1s 0.1s; -} - -.st-menu-open .st-pusher::after { - width: 100%; - height: 100%; - opacity: 1; - -webkit-transition: opacity 0.5s; - transition: opacity 0.5s; -} - -.st-menu { - background:#fff; - position: absolute; - top: 0; - left: 0; - z-index: 100; - visibility: hidden; - width: 300px; - height: 100%; - -webkit-transition: all 0.5s; - transition: all 0.5s; -} - -.st-menu::after { - position: absolute; - top: 0; - right: 0; - width: 100%; - height: 100%; - background: rgba(0,0,0,0.2); - content: ''; - opacity: 1; - -webkit-transition: opacity 0.5s; - transition: opacity 0.5s; -} - -.st-menu-open .st-menu::after { - width: 0; - height: 0; - opacity: 0; - -webkit-transition: opacity 0.5s, width 0.1s 0.5s, height 0.1s 0.5s; - transition: opacity 0.5s, width 0.1s 0.5s, height 0.1s 0.5s; -} - -/* content style */ - -.st-menu ul { - margin: 0; - padding: 0; - list-style: none; -} - -/* Individual effects */ - -/* Effect 1: Slide in on top */ -.st-effect-1.st-menu { - visibility: visible; - -webkit-transform: translate3d(-100%, 0, 0); - transform: translate3d(-100%, 0, 0); -} - -.st-effect-1.st-menu-open .st-effect-1.st-menu { - visibility: visible; - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); -} - -.st-effect-1.st-menu::after { - display: none; -} - -/* Effect 3: Push*/ -.st-effect-3.st-menu-open .st-pusher { - -webkit-transform: translate3d(300px, 0, 0); - transform: translate3d(300px, 0, 0); -} - -.st-effect-3.st-menu { - -webkit-transform: translate3d(-100%, 0, 0); - transform: translate3d(-100%, 0, 0); -} - -.st-effect-3.st-menu-open .st-effect-3.st-menu { - visibility: visible; - -webkit-transition: -webkit-transform 0.1s; - transition: transform 0.1s; -} - -.st-effect-3.st-menu::after { - display: none; -} - - -/* Fallback example for browsers that don't support 3D transforms (and no JS fallback) */ -.no-csstransforms3d .st-pusher, -.no-js .st-pusher { - padding-left: 300px; -} diff --git a/css/main.css b/css/main.css index 37f69c9..715c1f5 100755 --- a/css/main.css +++ b/css/main.css @@ -84,7 +84,7 @@ h2, h3 { text-align:center; margin:3em 0 2em 0; font-size:1em; - text-decoration:underline; + } h3 { text-align:left; diff --git a/index.html b/index.html index 30860ab..30d59c9 100644 --- a/index.html +++ b/index.html @@ -1,14 +1,17 @@ --- layout: default -title: notes +title: index --- -
+{% for category in site.categories %} +

{{ category | first }}

-
+ +{% endfor %} diff --git a/js/classie.js b/js/classie.js deleted file mode 100755 index a967554..0000000 --- a/js/classie.js +++ /dev/null @@ -1,80 +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 */ -/*global define: false */ - -( 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 ); -} - -var classie = { - // full names - hasClass: hasClass, - addClass: addClass, - removeClass: removeClass, - toggleClass: toggleClass, - // short names - has: hasClass, - add: addClass, - remove: removeClass, - toggle: toggleClass -}; - -// transport -if ( typeof define === 'function' && define.amd ) { - // AMD - define( classie ); -} else { - // browser global - window.classie = classie; -} - -})( window ); diff --git a/js/modernizr.custom.js b/js/modernizr.custom.js deleted file mode 100755 index f63dbbe..0000000 --- a/js/modernizr.custom.js +++ /dev/null @@ -1,4 +0,0 @@ -/* Modernizr 2.6.2 (Custom Build) | MIT & BSD - * Build: http://modernizr.com/download/#-csstransforms3d-shiv-cssclasses-teststyles-testprop-testallprops-prefixes-domprefixes-load - */ -;window.Modernizr=function(a,b,c){function z(a){j.cssText=a}function A(a,b){return z(m.join(a+";")+(b||""))}function B(a,b){return typeof a===b}function C(a,b){return!!~(""+a).indexOf(b)}function D(a,b){for(var d in a){var e=a[d];if(!C(e,"-")&&j[e]!==c)return b=="pfx"?e:!0}return!1}function E(a,b,d){for(var e in a){var f=b[a[e]];if(f!==c)return d===!1?a[e]:B(f,"function")?f.bind(d||b):f}return!1}function F(a,b,c){var d=a.charAt(0).toUpperCase()+a.slice(1),e=(a+" "+o.join(d+" ")+d).split(" ");return B(b,"string")||B(b,"undefined")?D(e,b):(e=(a+" "+p.join(d+" ")+d).split(" "),E(e,b,c))}var d="2.6.2",e={},f=!0,g=b.documentElement,h="modernizr",i=b.createElement(h),j=i.style,k,l={}.toString,m=" -webkit- -moz- -o- -ms- ".split(" "),n="Webkit Moz O ms",o=n.split(" "),p=n.toLowerCase().split(" "),q={},r={},s={},t=[],u=t.slice,v,w=function(a,c,d,e){var f,i,j,k,l=b.createElement("div"),m=b.body,n=m||b.createElement("body");if(parseInt(d,10))while(d--)j=b.createElement("div"),j.id=e?e[d]:h+(d+1),l.appendChild(j);return f=["­",'"].join(""),l.id=h,(m?l:n).innerHTML+=f,n.appendChild(l),m||(n.style.background="",n.style.overflow="hidden",k=g.style.overflow,g.style.overflow="hidden",g.appendChild(n)),i=c(l,a),m?l.parentNode.removeChild(l):(n.parentNode.removeChild(n),g.style.overflow=k),!!i},x={}.hasOwnProperty,y;!B(x,"undefined")&&!B(x.call,"undefined")?y=function(a,b){return x.call(a,b)}:y=function(a,b){return b in a&&B(a.constructor.prototype[b],"undefined")},Function.prototype.bind||(Function.prototype.bind=function(b){var c=this;if(typeof c!="function")throw new TypeError;var d=u.call(arguments,1),e=function(){if(this instanceof e){var a=function(){};a.prototype=c.prototype;var f=new a,g=c.apply(f,d.concat(u.call(arguments)));return Object(g)===g?g:f}return c.apply(b,d.concat(u.call(arguments)))};return e}),q.csstransforms3d=function(){var a=!!F("perspective");return a&&"webkitPerspective"in g.style&&w("@media (transform-3d),(-webkit-transform-3d){#modernizr{left:9px;position:absolute;height:3px;}}",function(b,c){a=b.offsetLeft===9&&b.offsetHeight===3}),a};for(var G in q)y(q,G)&&(v=G.toLowerCase(),e[v]=q[G](),t.push((e[v]?"":"no-")+v));return e.addTest=function(a,b){if(typeof a=="object")for(var d in a)y(a,d)&&e.addTest(d,a[d]);else{a=a.toLowerCase();if(e[a]!==c)return e;b=typeof b=="function"?b():b,typeof f!="undefined"&&f&&(g.className+=" "+(b?"":"no-")+a),e[a]=b}return e},z(""),i=k=null,function(a,b){function k(a,b){var c=a.createElement("p"),d=a.getElementsByTagName("head")[0]||a.documentElement;return c.innerHTML="x",d.insertBefore(c.lastChild,d.firstChild)}function l(){var a=r.elements;return typeof a=="string"?a.split(" "):a}function m(a){var b=i[a[g]];return b||(b={},h++,a[g]=h,i[h]=b),b}function n(a,c,f){c||(c=b);if(j)return c.createElement(a);f||(f=m(c));var g;return f.cache[a]?g=f.cache[a].cloneNode():e.test(a)?g=(f.cache[a]=f.createElem(a)).cloneNode():g=f.createElem(a),g.canHaveChildren&&!d.test(a)?f.frag.appendChild(g):g}function o(a,c){a||(a=b);if(j)return a.createDocumentFragment();c=c||m(a);var d=c.frag.cloneNode(),e=0,f=l(),g=f.length;for(;e",f="hidden"in a,j=a.childNodes.length==1||function(){b.createElement("a");var a=b.createDocumentFragment();return typeof a.cloneNode=="undefined"||typeof a.createDocumentFragment=="undefined"||typeof a.createElement=="undefined"}()}catch(c){f=!0,j=!0}})();var r={elements:c.elements||"abbr article aside audio bdi canvas data datalist details figcaption figure footer header hgroup mark meter nav output progress section summary time video",shivCSS:c.shivCSS!==!1,supportsUnknownElements:j,shivMethods:c.shivMethods!==!1,type:"default",shivDocument:q,createElement:n,createDocumentFragment:o};a.html5=r,q(b)}(this,b),e._version=d,e._prefixes=m,e._domPrefixes=p,e._cssomPrefixes=o,e.testProp=function(a){return D([a])},e.testAllProps=F,e.testStyles=w,g.className=g.className.replace(/(^|\s)no-js(\s|$)/,"$1$2")+(f?" js "+t.join(" "):""),e}(this,this.document),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 div' ) ), - // event type (if mobile use touch events) - eventtype = mobilecheck() ? 'touchstart' : 'click', - resetMenu = function() { - classie.remove( container, 'st-menu-open' ); - }, - bodyClickFn = function(evt) { - if( !hasParentClass( evt.target, 'st-menu' ) ) { - resetMenu(); - document.removeEventListener( eventtype, bodyClickFn ); - } - }; - - buttons.forEach( function( el, i ) { - var effect = el.getAttribute( 'data-effect' ); - - el.addEventListener( eventtype, function( ev ) { - ev.stopPropagation(); - ev.preventDefault(); - container.className = 'st-container'; // clear - classie.add( container, effect ); - setTimeout( function() { - classie.add( container, 'st-menu-open' ); - }, 25 ); - document.addEventListener( eventtype, bodyClickFn ); - }); - } ); - - } - - init(); - -})(); \ No newline at end of file