Advertisement
Guest User

Untitled

a guest
Apr 18th, 2014
39
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.45 KB | None | 0 0
  1. $('.item').sortable({
  2. tolerance: 'pointer',
  3. helper: 'clone',
  4. start: function(event, ui) {
  5. sorting = true;
  6. },
  7. beforeStop: function(event, ui) {
  8.  
  9. },
  10. stop: function(event, ui) {
  11. sorting = false;
  12. $('#picks-list li').each(function(index){
  13. $(this).find('#points-holder').text(pointArray[index]);
  14. });
  15.  
  16. savePicks();
  17.  
  18. },
  19. change: function(event, ui) {
  20.  
  21. }
  22. });
  23.  
  24. <div class="item active ui-sortable">
  25. <li class="player ui-droppable" data-name="Johnny Manziel" data-pick-id="534b112a4b65767d29010000">
  26. Johnny Manziel
  27. <div class="pull-right" id="player-badges">
  28. <span id="points-holder">10</span>
  29. <span class="remove-player player-badge">
  30. <i class="fa fa-trash-o"></i>
  31. </span>
  32. </div>
  33. </li><li class="player ui-droppable" data-name="Derek Carr" data-pick-id="534b112a4b65767d29030000" style="display: list-item;">
  34. Derek Carr
  35. <div class="pull-right" id="player-badges">
  36. <span id="points-holder">7</span>
  37. <span class="remove-player player-badge">
  38. <i class="fa fa-trash-o"></i>
  39. </span>
  40. </div>
  41. </li>
  42. <li class="player ui-droppable" data-name="Johnny Manziel" data-pick-id="534b112a4b65767d29020000">
  43. Johnny Manziel
  44. <div class="pull-right" id="player-badges">
  45. <span id="points-holder">5</span>
  46. <span class="remove-player player-badge">
  47. <i class="fa fa-trash-o"></i>
  48. </span>
  49. </div>
  50. </li>
  51.  
  52. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement