diff options
| author | Scott Ostler <scottbot9000@gmail.com> | 2010-06-17 02:47:52 -0400 |
|---|---|---|
| committer | Scott Ostler <scottbot9000@gmail.com> | 2010-06-17 02:47:52 -0400 |
| commit | 437c7cd3ecff287a3aec3a0b08c850092c67e8dd (patch) | |
| tree | f4819b4ba2d43a47a82125e21e32fca8f720b1cc /static/js/admin.js | |
| parent | c47183393b9271c05e7c947340c499bda7ef0bda (diff) | |
| parent | 0a4fdca2e4070771eec03c43bf99100fd09e5543 (diff) | |
Merge branch 'master' of ssh://dump.fm/pichat/repo
Diffstat (limited to 'static/js/admin.js')
| -rw-r--r-- | static/js/admin.js | 17 |
1 files changed, 16 insertions, 1 deletions
diff --git a/static/js/admin.js b/static/js/admin.js index e54368c..fc18685 100644 --- a/static/js/admin.js +++ b/static/js/admin.js @@ -102,4 +102,19 @@ Admin.cancelMute = function(id, nick) { buttons: { 'OK': submit , 'Cancel': close } }); html.dialog('open'); -}
\ No newline at end of file +} + + +/* +$('.msgDiv').live('mouseenter', function() { + $(this).css({'border': '1px dotted red', + 'margin': '-1' }); +}) + +$('.msgDiv').live('mouseleave', function() { + $(this).css({'border': 'none', + 'margin': '0'}); +}) + + +*/
\ No newline at end of file |
