update editor nav

This commit is contained in:
Henrique Dias
2016-02-08 20:15:55 +00:00
parent 5a609a2c0d
commit 64ae8d74c2
5 changed files with 18 additions and 3 deletions

View File

@@ -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");
}