summaryrefslogtreecommitdiff
path: root/static/js/admin.js
diff options
context:
space:
mode:
Diffstat (limited to 'static/js/admin.js')
-rw-r--r--static/js/admin.js17
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