Blame view

mustache/app/views/assets/scripts/timeline.js 266 Bytes
5a739853   patrick.he   commit
1
2
3
4
5
6
7
8
  jQuery(function($) {
  	$('[data-toggle="buttons"] .btn').on('click', function(e){
  		var target = $(this).find('input[type=radio]');
  		var which = parseInt(target.val());
  		$('[id*="timeline-"]').addClass('hide');
  		$('#timeline-'+which).removeClass('hide');
  	});
  });