Created
April 4, 2011 23:23
-
-
Save stevecastaneda/902696 to your computer and use it in GitHub Desktop.
After the refactor...
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Remove the task from the UI | |
$("#task_<%= @task.id %>").slideUp("slow", function() { | |
// Reload the tasks | |
$("#tasks").html("<%= escape_javascript(render(:partial => 'tasks/tasks'))%>"); | |
// Highlight the task that was rescheduled | |
$("#task_<%= @task.id %>").effect("highlight", {}, 1250); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment