summaryrefslogtreecommitdiff
path: root/share/www/script/jquery.editinline.js
diff options
context:
space:
mode:
Diffstat (limited to 'share/www/script/jquery.editinline.js')
-rw-r--r--share/www/script/jquery.editinline.js6
1 files changed, 6 insertions, 0 deletions
diff --git a/share/www/script/jquery.editinline.js b/share/www/script/jquery.editinline.js
index e677b982..b48607d4 100644
--- a/share/www/script/jquery.editinline.js
+++ b/share/www/script/jquery.editinline.js
@@ -42,6 +42,11 @@
}
}
});
+ if (options.acceptOnBlur) {
+ input.blur(function() {
+ return applyChange();
+ });
+ }
function applyChange(keyCode) {
var newText = input.val();
@@ -86,6 +91,7 @@
acceptLabel: "",
cancelLabel: "",
toolTip: "Double click to edit",
+ acceptOnBlur: true,
// callbacks
begin: function() { return true },