Browse Source

.tab:hover and tab_select logging

Nathaniel van Diepen 12 years ago
parent
commit
a897623b3b
2 changed files with 4 additions and 0 deletions
  1. 3 0
      www/css/style.css
  2. 1 0
      www/js/omnomirc.js

+ 3 - 0
www/css/style.css

@@ -158,4 +158,7 @@ html,body{
 }
 #tabs-list span.tab.clicked{
 	background-color: lightgrey;
+}
+#tabs-list span.tab:hover{
+	background-color: grey;
 }

+ 1 - 0
www/js/omnomirc.js

@@ -39,6 +39,7 @@
 			}
 		},
 		selectTab: function(id){
+			$o.event('tab_select',id);
 			if(id<tabs.length-1&&id>=0){
 				selectedTab=id;
 			}