Archived
1
0

fix variable name

This commit is contained in:
Jeff Becker
2016-04-30 16:19:08 -04:00
parent e01002ed25
commit 950441ef45
2 changed files with 3 additions and 3 deletions

View File

@@ -352,13 +352,13 @@ function init(prefix) {
r.post(function(j) {
if(j.error) {
// an error happened
r.showError(h.error);
r.showError(j.error);
} else {
// we're good
r.showMessage("posted as "+j.message_id);
}
}, function(err) {
alert(err);
r.showError(err);
});
r.showMessage("posting... ");
}