abdullahtellioglu

Results 24 comments of abdullahtellioglu

I tested and tried to find out what might be the reason and in AtmosphereFramework.java it checks the header of `X-Atmosphere-tracking-id` which is not sent from Client in any time....

The problem is happening if locale is set Turkish in JVM options. If JVM property is set `-Duser.language=tr` and create a js bundle, this bug is happening.

> Does this work if you move overlay.tsx to be overlay/@index.tsx? Then `localhost:8080/overlay` works but `localhost:8080/overlay/overlay` does not. It should work because I have two separate files for both routes...

Also, the menu has 2 overlay links which is OK as I have two Overlay named views

I cannot reproduce it either. Closing the issue as completed 👍 Thanks @taefi

> How is mySignal.reset("foo") different from mySignal.value("foo")? Imagine you have a reference to signals created in some scope, something like below, and you want to reset all at once. ```java...

I created a game where users can make at most three mistakes. What I tried initially was to listen to changes on the Game object and try to update another...

That might work, but semantically `requestUpdate()` looks better. You might not have anything to update as the project can be a mix of both Signal and non-Signal solutions. The urge...

> Or do you mean that the value of your signal is a mutable object and you're changing some property of that object? If that's the case, then your suggestion...