Skip to content

Instantly share code, notes, and snippets.

@poteto
Last active August 29, 2015 14:14
Show Gist options
  • Save poteto/5fcab739360a64a50582 to your computer and use it in GitHub Desktop.
Save poteto/5fcab739360a64a50582 to your computer and use it in GitHub Desktop.
<div class="selected-users">
{{#draggable-dropzone dropped="addUser"}}
<ul class="selected-users-list">
{{#each user in selectedUsers}}
<li>{{user.fullName}}</li>
{{/each}}
</ul>
{{/draggable-dropzone}}
</div>
<div class="available-users">
{{#each user in users}}
{{#draggable-item content=user.id}}
<span>{{user.fullName}}</span>
{{/draggable-item}}
{{/each}}
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment