Commit 34171297ab1221bb60edc4c5876b893bfde7b24d

Authored by Eugeny Galkovskiy
1 parent 3ffb4159

....

Showing 1 changed file with 11 additions and 0 deletions   Show diff stats
www/js/main_ru.js
... ... @@ -2207,3 +2207,14 @@ function Counter (time, id, lang_id) {
2207 2207  
2208 2208 }
2209 2209  
  2210 +
  2211 +$(document).ready(function(){
  2212 + $(".open_list_btn").click(function(){
  2213 + $(this).parent().find('.white_list').toggleClass('hidden');
  2214 + $(this).parent().toggleClass('small');
  2215 + });
  2216 + $(".close_list_btn").click(function(){
  2217 + $(this).parent().find('.white_list').toggleClass('hidden');
  2218 + $(this).parent().toggleClass('small');
  2219 + });
  2220 +});
2210 2221 \ No newline at end of file
... ...