Displaying 2 results from an estimated 2 matches for "jumbo_find".
2009 May 29
1
[PATCH server] fixed UI update bug -- ignore task_types when it doesn't exist
...l | 4 +++-
1 files changed, 3 insertions(+), 1 deletions(-)
diff --git a/src/app/views/task/_show.rhtml b/src/app/views/task/_show.rhtml
index f4e001d..ff7d434 100644
--- a/src/app/views/task/_show.rhtml
+++ b/src/app/views/task/_show.rhtml
@@ -75,7 +75,9 @@
<img src="images/jumbo_find.png" alt="find" width="145" height="145">
<div class="no-grid-items-text">
<h2>There are no tasks that match this filter.</h2>
- <p>Type: <strong><%= task_types.select {|type| type[1]...
2009 May 21
1
[PATCH server] Updated look and feel for empty grid views
...pp/views/search/results.rhtml
@@ -93,9 +93,9 @@
<% else %>
<div class="data_section">
<div class="no-grid-items">
- <%= image_tag 'no-grid-items.png', :style => 'float: left;' %>
+ <img src="images/jumbo_find.png" alt="find" width="145" height="145">
<div class="no-grid-items-text">
- No results found. <br/><br/>
+ <h2>No results found.</h2>
</div>
</div>
<...