public
Description: Tracks is a GTD(TM) web application, built with Ruby on Rails
Homepage: http://www.rousette.org.uk/projects/
Clone URL: git://github.com/bsag/tracks.git
Click here to lend your support to: tracks and make a donation at www.pledgie.com !
fixes #742 by placing the you-have-no-contexts message outside the scope of the 
sortable
lrbalt (author)
Wed Jun 25 11:28:18 -0700 2008
commit  30c49b685fbf251eb84acff6f2f81f3797ed1c7d
tree    3e19fd2e18645a59262986a99208b65a9995bcde
parent  099f1ed850ea32f40e2fb7ee030c97a1080edf11
...
1
2
 
3
4
5
6
 
 
 
7
8
9
...
1
 
2
3
4
5
 
6
7
8
9
10
11
0
@@ -1,9 +1,11 @@
0
 <div id="display_box">
0
-  <div id="list-contexts">
0
+  <div id="list-contexts-container">
0
     <div id="contexts-empty-nd" style="<%= @no_contexts ? 'display:block' : 'display:none'%>">
0
       <div class="message"><p>Currently there are no contexts</p></div>
0
     </div>
0
-    <%= render :partial => 'context_listing', :collection => @contexts %>
0
+    <div id="list-contexts">
0
+      <%= render :partial => 'context_listing', :collection => @contexts %>
0
+    </div>
0
   </div>
0
 </div>
0
 

Comments