Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
project
drupal
Commits
8e11050f
Commit
8e11050f
authored
Jun 23, 2012
by
Dries
Browse files
- Patch
#1631164
by Aron Novak, Mithrandir: autocomplete fires on readonly fields.
parent
254673a6
Changes
1
Hide whitespace changes
Inline
Side-by-side
core/misc/autocomplete.js
View file @
8e11050f
...
...
@@ -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
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment