From c7084d10f1ee77b50616c1af57717d9126614bd1 Mon Sep 17 00:00:00 2001 From: cinnaboot Date: Wed, 25 Sep 2019 13:18:19 -0400 Subject: [PATCH] fix typos in previous commit --- video_metadata/static/file_listing.js | 3 ++- video_metadata/static/style.css | 4 ++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/video_metadata/static/file_listing.js b/video_metadata/static/file_listing.js index 5270517..50f8d24 100644 --- a/video_metadata/static/file_listing.js +++ b/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) diff --git a/video_metadata/static/style.css b/video_metadata/static/style.css index 40bb07b..6e1995b 100644 --- a/video_metadata/static/style.css +++ b/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; }