We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 63dce4b + b2f7f93 commit e7a66c9Copy full SHA for e7a66c9
tagger.js
@@ -145,6 +145,7 @@
145
wrapper.appendChild(this._ul);
146
li.appendChild(this._completion);
147
this._add_events();
148
+ this._toggle_completion(false);
149
if (this._settings.completion.list instanceof Array) {
150
this._build_completion(this._settings.completion.list);
151
}
@@ -233,7 +234,7 @@
233
234
if (toggle) {
235
this._new_input_tag.setAttribute('list', 'tagger-completion-' + this._id);
236
} else {
- this._new_input_tag.removeAttribute('list');
237
+ this._new_input_tag.setAttribute('list', 'tagger-completion-disabled-' + this._id);
238
239
},
240
// --------------------------------------------------------------------------------------
0 commit comments