Blame view

mustache/app/views/assets/scripts/typography.js 267 Bytes
5a739853   patrick.he   commit
1
2
3
4
5
6
7
8
  jQuery(function($) {
  
  	window.prettyPrint && prettyPrint();
  	$('#id-check-horizontal').removeAttr('checked').on('click', function(){
  		$('#dt-list-1').toggleClass('dl-horizontal').prev().html(this.checked ? '<dl class="dl-horizontal">' : '<dl>');
  	});
  
  })