Skip to content

Commit

Permalink
link sortable columns so stories move between them
Browse files Browse the repository at this point in the history
  • Loading branch information
lauramoore committed Apr 6, 2011
1 parent bfe7d8b commit 1b7a02e
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions app/views/board/show.html.erb
Expand Up @@ -31,14 +31,14 @@
</td>
<td>
<div class="delegated">
<ul class="sortcol>
<ul class="sortcol">
<%= render(@delegated) %>
</ul>
</div>
</td>
<td>
<div class="complete">
<ul>
<ul class="sortcol">
<%= render(@complete) %>
</ul>
</div>
Expand All @@ -48,7 +48,9 @@
<<script>
$(function() {
alert('jquery enabled')
$(".sortcol").sortable();
$(".sortcol").sortable({
connectWith: ".sortcol"
});
//$( "#sortable" ).disableSelection();
});
</script>

0 comments on commit 1b7a02e

Please sign in to comment.