Merge branch 'master' of github.com:TracksApp/tracks

This commit is contained in:
Matt Rogers 2012-01-10 11:23:52 -06:00
commit 1be7dab631
7 changed files with 4 additions and 2 deletions

View file

@ -17,6 +17,8 @@ parameters += "&_tag_name=#{@tag_name}" if @source_view == 'tag'
<li><%= remote_delete_menu_item(todo) %></li>
<% unless todo.completed? || todo.deferred? -%>
<li><%= remote_defer_menu_item(1, todo) %></li>
<li><%= remote_defer_menu_item(2, todo) %></li>
<li><%= remote_defer_menu_item(3, todo) %></li>
<li><%= remote_defer_menu_item(7, todo) %></li>
<li><%= remote_promote_to_project_menu_item(todo) %></li>
<% end -%>

View file

@ -426,7 +426,7 @@ en:
completed_last_x_days: Completed in the last %{count} days
no_actions_with: Currently there are no incomplete actions with the tag '%{tag_name}'
defer_x_days:
one: Defer one day
one: Defer 1 day
other: Defer %{count} days
added_new_next_action_singular: Added new next action
no_completed_actions: Currently there are no completed actions.

BIN
public/images/defer_2.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 496 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 425 B

BIN
public/images/defer_3.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 501 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 441 B

View file

@ -1318,7 +1318,7 @@ function enable_rich_interaction(){
$(document).ready(function() {
// fix for IE8. Without this checkboxes don't work AJAXy. See #1152
if($.browser.msie && ($.browser.version.substring(0, 2) == "8.")) {
if($.browser.msie && ( ($.browser.version.substring(0, 2) == "8.") || ($.browser.version.substring(0, 2) == "7.") ) ) {
$('body').bind('change', function() {
return true;
});