Advertisement
dimistor

chat mods for moders

Apr 27th, 2012
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // в глобал
  2. var display_all_channel = true;
  3.  
  4. function switchChatDisplayMode() {
  5.     display_all_channel = !display_all_channel;
  6. }
  7.  
  8. // ~230 строка изменить условие if'а
  9. if( $.cookie( 'is_moderator' ) && display_all_channel ) {
  10.     ...
  11. }
  12.  
  13. // ~656 строка добавть в список
  14. <li onclick="switchChatDisplayMode()">Изменить режим чата</li>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement