mirror of
https://github.com/Tygs/0bin.git
synced 2023-08-10 21:13:00 +03:00
Replace pre reader mode by a div
This commit is contained in:
parent
cda601a355
commit
cc3ed69710
@ -323,7 +323,6 @@ form textarea {
|
||||
clear: both;
|
||||
}
|
||||
|
||||
|
||||
html.local-storage .no-local-storage {
|
||||
display: none;
|
||||
}
|
||||
@ -503,6 +502,10 @@ nav ul li a:hover {
|
||||
font-size: 70%;
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
/* reader mode */
|
||||
|
||||
#readable-paste-content {
|
||||
white-space: pre;
|
||||
}
|
||||
|
@ -71,7 +71,6 @@ const app = new Vue({
|
||||
toggleReaderMode: function () {
|
||||
if (!this.readerMode) {
|
||||
this.messages = [];
|
||||
this.currentPaste.content = zerobin.getPasteContent();
|
||||
}
|
||||
|
||||
this.readerMode = !this.readerMode;
|
||||
@ -758,6 +757,7 @@ if (content && key) {
|
||||
|
||||
/* Decrypted content goes back to initial container*/
|
||||
document.querySelector('#paste-content').innerText = content;
|
||||
app.currentPaste.content = content
|
||||
|
||||
if (content.indexOf('data:image') == 0) {
|
||||
// Display Image
|
||||
|
@ -60,9 +60,9 @@
|
||||
</code>
|
||||
</pre>
|
||||
|
||||
<pre id="readable-paste-content" v-if="readerMode">
|
||||
{% currentPaste.content %}
|
||||
</pre>
|
||||
<div id="readable-paste-content" v-if="readerMode">
|
||||
fsdqfd{% currentPaste.content %}
|
||||
</div>
|
||||
|
||||
<div class="d-flex justify-content-between down">
|
||||
<div v-if="currentPaste.ownerKey">
|
||||
|
Loading…
Reference in New Issue
Block a user