improve asciidoc and rst editing #40

This commit is contained in:
Henrique Dias
2016-02-07 09:09:22 +00:00
parent cf23f6362a
commit 78e252b730
2 changed files with 23 additions and 19 deletions

View File

@@ -1,4 +1,23 @@
$(document).ready(function() {
// Log out the user sending bad credentials to the server
$("#logout").click(function(event) {
event.preventDefault();
$.ajax({
type: "GET",
url: "/admin",
async: false,
username: "username",
password: "password",
headers: {
"Authorization": "Basic xxx"
}
}).fail(function() {
window.location = "/";
});
return false;
});
$(document).pjax('a[data-pjax]', '#content');
});
@@ -20,24 +39,6 @@ $(document).on('ready pjax:success', function() {
$("textarea").each(autoGrow);
});
// Log out the user sending bad credentials to the server
$("#logout").click(function(event) {
event.preventDefault();
$.ajax({
type: "GET",
url: "/admin",
async: false,
username: "username",
password: "password",
headers: {
"Authorization": "Basic xxx"
}
}).fail(function() {
window.location = "/";
});
return false;
});
if ($('main').hasClass('browse')) {
$(document).trigger("page:browse");
}