Blame view

mustache/app/views/assets/scripts/nestable-list.js 164 Bytes
5a739853   patrick.he   commit
1
2
3
4
5
6
7
8
9
10
11
  jQuery(function($){
  
  	$('.dd').nestable();
  
  	$('.dd-handle a').on('mousedown', function(e){
  		e.stopPropagation();
  	});
  	
  	$('[data-rel="tooltip"]').tooltip();
  
  });