Guest User

Untitled

a guest
Oct 16th, 2018
176
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.  
  2. Sections = new Meteor.Collection('sections')
  3. ENTER_KEY = 13
  4.  
  5. if Meteor.is_client
  6.  
  7.   Template.sections.sections = Sections.find()
  8.  
  9.   Meteor.startup( ->
  10.  
  11.     cnt=0
  12.     $('.my-items-list').each(->
  13.       $(this).sortable()
  14.       $(this).disableSelection()
  15.       cnt++
  16.     )
  17.     console.log cnt
  18.   )
  19. =======================================================
  20. CONSOLE LOG:
  21. item-lists: 0
Add Comment
Please, Sign In to add comment