mirror of
https://github.com/WhatCD/Gazelle.git
synced 2024-12-13 10:56:26 +00:00
17 lines
678 B
JavaScript
17 lines
678 B
JavaScript
//Using this instead of comments as comments has pertty damn strict requirements on the variable names required
|
|
|
|
function Quick_Preview() {
|
|
$('#buttons').raw().innerHTML = "<input type='button' value='Editor' onclick='Quick_Edit();' /><input type='submit' value='Send Message' />";
|
|
ajax.post("ajax.php?action=preview","messageform", function(response){
|
|
$('#quickpost').hide();
|
|
$('#preview').raw().innerHTML = response;
|
|
$('#preview').show();
|
|
});
|
|
}
|
|
|
|
function Quick_Edit() {
|
|
$('#buttons').raw().innerHTML = "<input type='button' value='Preview' onclick='Quick_Preview();' /><input type='submit' value='Send Message' />";
|
|
$('#preview').hide();
|
|
$('#quickpost').show();
|
|
}
|