summaryrefslogtreecommitdiffstats
path: root/static/functions/inbox.js
diff options
context:
space:
mode:
authorGit <git@what.cd>2013-05-04 08:00:48 +0000
committerGit <git@what.cd>2013-05-04 08:00:48 +0000
commit68fa26b2dbbce5a6374cb330a487cf430b6f9b16 (patch)
tree93083a2b1ed25cef16767c54c61b28725cef8754 /static/functions/inbox.js
parentde02cdd53e1ac6eb3c900337698a594b2e225d07 (diff)
downloadGazelle-68fa26b2dbbce5a6374cb330a487cf430b6f9b16.zip
Gazelle-68fa26b2dbbce5a6374cb330a487cf430b6f9b16.tar.gz
Gazelle-68fa26b2dbbce5a6374cb330a487cf430b6f9b16.tar.bz2
Empty commit
Diffstat (limited to 'static/functions/inbox.js')
-rw-r--r--static/functions/inbox.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/static/functions/inbox.js b/static/functions/inbox.js
index 4fda69a..19f6039 100644
--- a/static/functions/inbox.js
+++ b/static/functions/inbox.js
@@ -1,8 +1,8 @@
//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){
+ $('#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();
@@ -10,7 +10,7 @@ function Quick_Preview() {
}
function Quick_Edit() {
- $('#buttons').raw().innerHTML = "<input type='button' value='Preview' onclick='Quick_Preview();' /><input type='submit' value='Send Message' />";
+ $('#buttons').raw().innerHTML = "<input type=\"button\" value=\"Preview\" onclick=\"Quick_Preview();\" /><input type=\"submit\" value=\"Send Message\" />";
$('#preview').hide();
$('#quickpost').show();
}