Code Monkey home page Code Monkey logo

Comments (6)

zlsa avatar zlsa commented on September 4, 2024

Only the first letter you type works? After you type a letter, does the input box unfocus itself?

from atc.

kiliankoe avatar kiliankoe commented on September 4, 2024

Focus still seems to be there, but no further input is being accepted after the first letter. Enter works, but that just submits that single letter as @BarryCarlyon already said.

I'm on Safari Version 8.0.2 (10600.2.5) if that helps. Chrome works just fine.

from atc.

zlsa avatar zlsa commented on September 4, 2024

Are there any errors logged in the console?

from atc.

kiliankoe avatar kiliankoe commented on September 4, 2024

I was unfortunately stuck on the loading screen for a bit there. No clue why :(

But now it's working again and there's no errors logged whatsoever. Nothing shows up in the console besides probably normal output when trying to type and sending one-liners.

[Log] [ INFO  ] Version v2.0.5 (modules.js, line 124)
[Log] [ INFO  ] Finished loading 13 modules in 0.085s (modules.js, line 124)
[Log] [ INFO  ] Downloaded all assets. (modules.js, line 124)
[Log] arriving aircraft no longer visible. YU FAIL (aircraft.js, line 1238, x2)

from atc.

BonsaiDen avatar BonsaiDen commented on September 4, 2024

This is caused by the CSS.

The user-select: none on * causes both some earlier version of Chrome as well as the recent Safaris to now allow any input into the text field.

You'll need to add an additional style to fix this by specifically allowing input on input elements.

input {
    -webkit-user-select: text;
    -moz-select: text;
    user-select: text;
} 

from atc.

BarryCarlyon avatar BarryCarlyon commented on September 4, 2024

Looks good from here now :-)

from atc.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.