mirror of
https://github.com/filebrowser/filebrowser.git
synced 2024-06-07 23:00:43 +00:00
update editor nav
This commit is contained in:
parent
5a609a2c0d
commit
64ae8d74c2
2
assets/css/main.min.css
vendored
2
assets/css/main.min.css
vendored
File diff suppressed because one or more lines are too long
2
assets/js/app.min.js
vendored
2
assets/js/app.min.js
vendored
File diff suppressed because one or more lines are too long
@ -131,6 +131,10 @@ body > footer p {
|
||||
font-size: .9em
|
||||
}
|
||||
|
||||
body > footer a {
|
||||
color: #aaa;
|
||||
}
|
||||
|
||||
|
||||
/* NOFICATIONS */
|
||||
|
||||
@ -375,6 +379,11 @@ fieldset input {
|
||||
line-height: 3em;
|
||||
cursor: pointer;
|
||||
font-size: 1em;
|
||||
color: inherit;
|
||||
}
|
||||
|
||||
.editor .content nav a.active {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
#editor-preview {
|
||||
|
@ -32,6 +32,8 @@ $(document).on('page:editor', function() {
|
||||
event.preventDefault();
|
||||
preview.hide();
|
||||
editor.fadeIn();
|
||||
$(this).addClass('active');
|
||||
$("#see-preview").removeClass('active');
|
||||
$("#see-preview").data("previewing", "false");
|
||||
})
|
||||
|
||||
@ -44,6 +46,8 @@ $(document).on('page:editor', function() {
|
||||
if ($(this).data("previewing") == "true") {
|
||||
preview.hide();
|
||||
editor.fadeIn();
|
||||
$(this).removeClass('active');
|
||||
$("#see-source").addClass('active');
|
||||
$(this).data("previewing", "false");
|
||||
} else {
|
||||
// If it's in editing mode, convert the markdown to html
|
||||
@ -55,6 +59,8 @@ $(document).on('page:editor', function() {
|
||||
// Hide the editor and show the preview
|
||||
editor.hide();
|
||||
preview.html(html).fadeIn();
|
||||
$(this).addClass('active');
|
||||
$("#see-source").removeClass('active');
|
||||
$(this).data("previewing", "true");
|
||||
}
|
||||
|
||||
|
@ -35,7 +35,7 @@
|
||||
<div class="content">
|
||||
{{ if eq .Mode "markdown" }}
|
||||
<nav>
|
||||
<a id="see-source"><i class="fa fa-code"></i> Source</a>
|
||||
<a id="see-source" class="active"><i class="fa fa-code"></i> Source</a>
|
||||
<a id="see-preview"><i class="fa fa-eye"></i> Preview</a>
|
||||
</nav>
|
||||
{{ end}}
|
||||
|
Loading…
Reference in New Issue
Block a user