Skip to content

Commit

Permalink
bring up task editor on double click on title
Browse files Browse the repository at this point in the history
  • Loading branch information
mrtazz committed Dec 13, 2010
1 parent d961e53 commit c03ecf4
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions evently/tasks/setTasks/selectors/span.title/dblclick.js
@@ -0,0 +1,13 @@
function()
{
$.log("Double Click!");
var formwrapper = $(this).parent().children("div.taskeditor");
if (formwrapper.is(":hidden"))
{
formwrapper.slideDown("fast");
}
else
{
formwrapper.slideUp("fast");
}
};

0 comments on commit c03ecf4

Please sign in to comment.