summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--askbot/skins/default/templates/question.html12
1 files changed, 12 insertions, 0 deletions
diff --git a/askbot/skins/default/templates/question.html b/askbot/skins/default/templates/question.html
index 06cd1332..637f8afb 100644
--- a/askbot/skins/default/templates/question.html
+++ b/askbot/skins/default/templates/question.html
@@ -529,6 +529,18 @@
$('#fmanswer textarea').focus();
}
{% if settings.ENABLE_SHARING_GOOGLE %}$.getScript("http://apis.google.com/js/plusone.js"){% endif %}
+ var answer_id = window.location.hash.substring(1);
+ if (answer_id!=""){
+ $("#answer-container-" + answer_id).addClass('highlight');
+ $("#answer-container-" + answer_id).hide();
+ $("#answer-container-" + answer_id).fadeIn(2000);
+ //using window.setTimeout
+ /*function foo(){
+ $("#answer-container-" + answer_id).removeClass('highlight')
+ }
+ var timeout = window.setTimeout(foo, 2000);
+ */
+ }
});
function initEditor(){