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