remote-list icon indicating copy to clipboard operation
remote-list copied to clipboard

Not working in Safari 8.0

Open wottpal opened this issue 9 years ago • 1 comments

I've created an input-element like this in html:

                   <input id="input-anliegen" name="anliegen" type="text"
                           placeholder="z.B. Haarentfernung"
                           data-list-highlight="true"
                           data-list-value-completion="true" />

Filled the remote-list with javascript:

$('#input-anliegen').remoteList({
    minLength: 0,
    maxLength: 0,
    source: function(value, response){
        response(["...", ".."]);
    }
});

And everything works just fine in Chrome and Firefox, in Safari the textfield looks like that: bildschirmfoto 2014-10-27 um 15 10 47

There is an extra chooser, which I want to be included in the prior textfield, just like in Chrome and Firefox.

wottpal avatar Oct 27 '14 14:10 wottpal