diff options
-rw-r--r-- | share/www/script/jquery.editinline.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/share/www/script/jquery.editinline.js b/share/www/script/jquery.editinline.js index 868abc5e..b48607d4 100644 --- a/share/www/script/jquery.editinline.js +++ b/share/www/script/jquery.editinline.js @@ -90,7 +90,7 @@ allowEmpty: true, acceptLabel: "", cancelLabel: "", - toolTip: "Click to edit", + toolTip: "Double click to edit", acceptOnBlur: true, // callbacks @@ -105,7 +105,7 @@ }, options || {}); return this.each(function() { - $(this).attr("title", options.toolTip).click(function() { + $(this).attr("title", options.toolTip).dblclick(function() { startEditing(this, options); }); }); |