Browse Source

fix typos in previous commit

master
cinnaboot 7 years ago
parent
commit
c7084d10f1
  1. 3
      video_metadata/static/file_listing.js
  2. 4
      video_metadata/static/style.css

3
video_metadata/static/file_listing.js

@ -10,7 +10,8 @@ function addContents(node, json) {
let a = document.createElement('a');
a.href = window.location;
a.dataset.base_name = json.base_name;
a.dataset.file_extension = json.file_extension; a.dataset.is_dir = json.is_dir;
a.dataset.file_extension = json.file_extension;
a.dataset.is_dir = json.is_dir;
a.dataset.rel_path = json.rel_path;
if (json.is_dir)

4
video_metadata/static/style.css

@ -31,10 +31,10 @@ input.danger { color: #cc2f2e; }
position: fixed;
top: 25%; left: 25%;
width: 50%; height: 50%;
padding 2em;
padding: 1em;
background-color: darkgrey;
overflow: auto;
}
.query_description { border: 0; padding: 0; margin: 0; }
#query_close { float: right; margin-right: 1em; margin-top: 1em; }
#query_close { float: right; }

Loading…
Cancel
Save