Blame view

backend/web/js/language.js 150 Bytes
b0f143c3   Yarik   first commit
1
2
3
4
5
6
  $(function() {
  	$(document).on('click', '.settings_menu>li>a', function() {
  		console.log('event');
  		$(this).parent().toggleClass('active');
  	});
  });