Add travis,
add cover element
This commit is contained in:
1
.travis.yml
Normal file
1
.travis.yml
Normal file
@@ -0,0 +1 @@
|
||||
language: node_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({
|
||||
|
@@ -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;*/
|
||||
|
@@ -8,6 +8,7 @@
|
||||
<script src="base.js"></script>
|
||||
</head>
|
||||
<body>
|
||||
<div id="cover" class="hidden"></div>
|
||||
<div class="navbar-container box-shadow-1">
|
||||
<div class="navbar">
|
||||
<div class="navbar-text">Location: /<span id="files-location"></span></div>
|
||||
|
Reference in New Issue
Block a user