Mercurial > public > sg101
view media/js/shoutbox.js @ 145:71cb4208dc98
Tweak to #30, admin dashboard. Because of a bug in Django (9568), my dashboard appears on the login page. To get around this, pass in the user to the templatetag, so it can do a 'if user.is_staff' check. Also tweaked the HTML and CSS to show non-zero pending items in red. Shortened the pending item titles for readability.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Wed, 09 Dec 2009 00:03:10 +0000 |
parents | 3ae999b0c53b |
children | b43e1288ff80 |
line wrap: on
line source
$(document).ready(function() { var submit = $('#shoutbox-submit'); submit.click(function () { var input = $('#shoutbox-smiley-input'); var msg = $.trim(input.val()); if (msg.length == 0) { return false; } submit.attr('disabled', 'disabled'); $.post('/shout/shout/', { msg: msg }, function (data, textStatus) { input.val(''); if (data != '') { $('#shoutbox-shout-container').prepend(data); $('#shoutbox-shout-container p:first').fadeIn(2500); } submit.removeAttr('disabled'); }, 'html'); return false; }); var smilies_loaded = false; var smiley_frame = $('#shoutbox-smiley-frame'); $('#shoutbox-smilies').click(function () { smiley_frame.toggle(); if (!smilies_loaded) { smiley_frame.load('/smiley/farm/', function () { $('#shoutbox-busy-icon').hide(); var txt = $("#shoutbox-smiley-input")[0]; $('#shoutbox-smiley-frame img').click(function() { txt.value += ' ' + this.alt + ' '; txt.focus(); }); smilies_loaded = true; }); } }); });