diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..d2f3209 --- /dev/null +++ b/.travis.yml @@ -0,0 +1 @@ +language: node_js \ No newline at end of file diff --git a/processing.js b/processing.js index e0d72e0..b7134f1 100644 --- a/processing.js +++ b/processing.js @@ -7,7 +7,7 @@ module.exports.mergedir = (dirname,settings)=>{ module.exports.dirprocess = (dirstream,location,settings)=>{ let contents = [] dirstream.forEach(element => { - console.log(element) + //console.log(element) if(!(element.name.startsWith('.')&&!settings.showHidden) ) { contents.push({ diff --git a/static/base.css b/static/base.css index 23b4da3..f09d55c 100644 --- a/static/base.css +++ b/static/base.css @@ -3,6 +3,17 @@ body{ background-color:#c5c0c0; margin: 0%; } +#cover{ + position: fixed; + top:0; + height:100%; + width:100%; + background-color: rgba(0,0,0,0.25); + z-index:3; +} +.hidden{ + display: none; +} .container{ padding:0.5rem; /*display: flex;*/ diff --git a/static/index.html b/static/index.html index aa5471a..2deec8b 100644 --- a/static/index.html +++ b/static/index.html @@ -8,6 +8,7 @@
+