summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEvgeny Fadeev <evgeny.fadeev@gmail.com>2013-05-21 02:40:50 -0400
committerEvgeny Fadeev <evgeny.fadeev@gmail.com>2013-05-21 02:40:50 -0400
commit2a0103e349ed9b690ad6ac3f5915def6975bc68c (patch)
tree842c1d711837623ce8ebf0951c53432d30bc9e98
parent0f141e1861cba29edd216e28f63171f16c064f09 (diff)
downloadaskbot-2a0103e349ed9b690ad6ac3f5915def6975bc68c.tar.gz
askbot-2a0103e349ed9b690ad6ac3f5915def6975bc68c.tar.bz2
askbot-2a0103e349ed9b690ad6ac3f5915def6975bc68c.zip
added class to the cancel add comment button
-rw-r--r--askbot/media/js/post.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/askbot/media/js/post.js b/askbot/media/js/post.js
index 4d63559c..f3a86618 100644
--- a/askbot/media/js/post.js
+++ b/askbot/media/js/post.js
@@ -1799,7 +1799,7 @@ EditCommentForm.prototype.createDom = function(){
this._submit_btn = $('<button class="submit"></button>');
this._controlsBox.append(this._submit_btn);
- this._cancel_btn = $('<button class="submit"></button>');
+ this._cancel_btn = $('<button class="submit cancel"></button>');
this._cancel_btn.html(gettext('cancel'));
this._controlsBox.append(this._cancel_btn);