File viewer fixes

This commit is contained in:
2019-08-10 14:15:54 +02:00
parent a2b3b265a6
commit 973f03fc70
8 changed files with 64 additions and 74 deletions

View File

@@ -162,15 +162,15 @@
<script src="/res/misc/chartjs/Chart.min.js"></script>
<script src="/res/script/jquery.js"></script>
<script src="/res/script/Keyboard.js?v4"></script>
<script src="/res/script/Toolbar.js?v4"></script>
<script src="/res/script/Viewer.js?v4"></script>
<script src="/res/script/ListNavigator.js?v4"></script>
<script src="/res/script/Toolbar.js?v6"></script>
<script src="/res/script/Viewer.js?v6"></script>
<script src="/res/script/ListNavigator.js?v6"></script>
<script>
// This info gets filled in on the server side to prevent having to make an API call right after the page loads.
// Just to slice another few milliseconds from the load time :)
Viewer.init('{{.Other.Type}}', {{.Other.APIResponse}});
window.addEventListener("load", function(){
Viewer.init('{{.Other.Type}}', {{.Other.APIResponse}});
});
</script>
{{template "analytics"}}

View File

@@ -5,16 +5,6 @@
{{template "meta_tags" "Free file sharing service"}}
{{template "user_style" .}}
<script type="text/javascript">var apiEndpoint = '{{.APIEndpoint}}';</script>
<style>
#uploads_queue{
position: relative;
width: 100%;
height: 0;
overflow-x: hidden;
overflow-y: scroll;
transition: height 2s;
}
</style>
</head>
<body>

View File

@@ -5,7 +5,7 @@
{{template "meta_tags" "Text Upload"}}
{{template "user_style" .}}
<script src="/res/script/jquery-2.1.4.min.js"></script>
<style>
#toolbar {
position: absolute;
@@ -13,13 +13,19 @@
height: 100%;
background-color: var(--accent_color_medium)
}
.textarea{
.textarea_container {
position: absolute;
top: 0;
left: 8em;
top: 0;
right: 0;
bottom: 0;
display: inline-block;
}
.textarea{
position: relative;
height: 100%;
width: 100%;
border: none !important;
/* border: none !important; */
background: var(--accent_color_dark);
}
@@ -43,14 +49,16 @@
<span>Upload</span>
</button>
<a href="/" class="button toolbar_button button_full_width">
<img src="/res/img/pixeldrain_small.png" alt="Visit the home page" style="width:22px; height: 22px;"/>
<img src="/res/img/pixeldrain_transparent.png" alt="Back to the Home page"/>
<span>Home</span>
</a>
<br/><br/>
Tip: Save your file with extension '.md' to use markdown<br/>
Tip: Save your file with extension '.md' to use markdown formatting<br/>
{{template "advertisement" .}}
</div>
<textarea id="textarea" class="textarea" placeholder="Your text here..." autofocus="autofocus"></textarea>
<div class="textarea_container">
<textarea id="textarea" class="textarea" placeholder="Your text here..." autofocus="autofocus"></textarea>
</div>
<script src="/res/script/compiled/textupload.js"></script>
{{template "analytics"}}
</body>