]> git.openstreetmap.org Git - osqa.git/blob - forum/skins/default/media/js/osqa.question.js
Configure logging "the Django way" and ensure that all messages are written to the...
[osqa.git] / forum / skins / default / media / js / osqa.question.js
1 $(function () {
2     $('div#editor_side_bar').hide();
3
4     $('#editor').focus(function(){ $('div#editor_side_bar').fadeIn('slow') });
5     $('#editor').blur(function(){ $('div#editor_side_bar').fadeOut('slow') });
6 });