diff options
author | Git <git@what.cd> | 2013-06-17 08:01:02 +0000 |
---|---|---|
committer | Git <git@what.cd> | 2013-06-17 08:01:02 +0000 |
commit | b139eca03b4fef84087bddaf6768432a356bfa71 (patch) | |
tree | ae5e0c51093fc69d6d74e115d14333708001c407 /static/functions/inbox.js | |
parent | 39956ded1f476188749fd8365549c0f83ec72f7a (diff) | |
download | Gazelle-b139eca03b4fef84087bddaf6768432a356bfa71.zip Gazelle-b139eca03b4fef84087bddaf6768432a356bfa71.tar.gz Gazelle-b139eca03b4fef84087bddaf6768432a356bfa71.tar.bz2 |
Empty commit
Diffstat (limited to 'static/functions/inbox.js')
-rw-r--r-- | static/functions/inbox.js | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/static/functions/inbox.js b/static/functions/inbox.js index 19f6039..6bcc78c 100644 --- a/static/functions/inbox.js +++ b/static/functions/inbox.js @@ -3,14 +3,14 @@ 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(); + $('#quickpost').ghide(); $('#preview').raw().innerHTML = response; - $('#preview').show(); + $('#preview').gshow(); }); } function Quick_Edit() { $('#buttons').raw().innerHTML = "<input type=\"button\" value=\"Preview\" onclick=\"Quick_Preview();\" /><input type=\"submit\" value=\"Send Message\" />"; - $('#preview').hide(); - $('#quickpost').show(); + $('#preview').ghide(); + $('#quickpost').gshow(); } |