From 8e11050fdb0c89c03cca6c032af6b9418258601e Mon Sep 17 00:00:00 2001 From: Dries <dries@buytaert.net> Date: Sat, 23 Jun 2012 16:05:17 -0700 Subject: [PATCH] - Patch #1631164 by Aron Novak, Mithrandir: autocomplete fires on readonly fields. --- core/misc/autocomplete.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/misc/autocomplete.js b/core/misc/autocomplete.js index 8b0dd7237f17..0ffe404db420 100644 --- a/core/misc/autocomplete.js +++ b/core/misc/autocomplete.js @@ -102,7 +102,7 @@ Drupal.jsAC.prototype.onkeyup = function (input, e) { return true; default: // All other keys. - if (input.value.length > 0) { + if (input.value.length > 0 && !input.readOnly) { this.populatePopup(); } else { -- GitLab