Jason Sobell
Jason Sobell
Same issue with Firefox
Hmm, given that the current implementation has associated a queue with an instance, it doesn't look like it's feasible to use the model in this way. It also looks like...
Yes, I noticed and mentioned those two aspects of the current system. A key question here though is whether either of those issues have anything to do with the state...
No problems. I tried contacting you on Gitter a few months ago, but had no luck. I wrote a simple but very fast FSM implementation a while ago, and I'll...
```c# using System; using System.Collections.Generic; using System.Linq; using ServiceStack.Text; namespace FastFSM { public abstract class FSM where TEvent : IComparable where TStateName : IComparable { public FSM() { } public...
Here's an example of the workflow editor: 
The current implementation adds the number of days supplied to the current value, while it should be adding those days-1 to the first day of the month of the current...
It's all fixed and working on my `questmetrics` branch at https://github.com/questmetrics/NiL.JS/tree/questmetrics
I've released a working version as a NuGet package for now, as we need it for our external build server. There were a number of other issues too related to...
The only tests that fail in my implementation are those involving things like `new Date(1970,1111111111111,1)`, which cause errors in .NET because they exceed the integer boundary. Do we care about...