fixes #21: Unable to preview forum posts and wiki pages
This commit is contained in:
@@ -21,16 +21,17 @@
|
||||
}
|
||||
|
||||
Danbooru.ForumPost.initialize_preview_link = function() {
|
||||
$("#c-forum-topics #preview a[name=toggle-preview]").click(function() {
|
||||
$("#c-forum-topics #preview a[name=toggle-preview]").click(function(e) {
|
||||
$("#preview").toggle();
|
||||
$("#dtext-help").toggle();
|
||||
e.preventDefault();
|
||||
});
|
||||
|
||||
$("#c-forum-topics input[value=Preview]").click(function(e) {
|
||||
e.preventDefault();
|
||||
$.ajax({
|
||||
type: "post",
|
||||
url: "/dtext/preview",
|
||||
url: "/dtext_preview",
|
||||
data: {
|
||||
body: $("#forum_post_body").val()
|
||||
},
|
||||
|
||||
@@ -8,16 +8,17 @@
|
||||
}
|
||||
|
||||
Danbooru.WikiPage.initialize_preview_link = function() {
|
||||
$("#c-wiki-pages #preview a[name=toggle-preview]").click(function() {
|
||||
$("#c-wiki-pages #preview a[name=toggle-preview]").click(function(e) {
|
||||
$("#preview").toggle();
|
||||
$("#dtext-help").toggle();
|
||||
e.preventDefault();
|
||||
});
|
||||
|
||||
$("#c-wiki-pages input[value=Preview]").click(function(e) {
|
||||
e.preventDefault();
|
||||
$.ajax({
|
||||
type: "post",
|
||||
url: "/dtext/preview",
|
||||
url: "/dtext_preview",
|
||||
data: {
|
||||
body: $("#wiki_page_body").val()
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user