Joshua Granick

Results 89 comments of Joshua Granick

Putting all the docs in the "lib" folder: Pros: * The documentation is only in one location * The documentation is located where API docs could be available without Lime...

Hi everyone, The shirts are good quality. American Apparel have always been my favorite T-shirts, of all the different printed shirts I received at different events. There are two OpenFL...

I just fixed the Polar sample in OpenFL, it was an issue with AGAL array sizes

Perhaps something else changed in the initial test? For example, are we talking about Lime 8.1 and 8.2 on Haxelib, or are these compiled from source? If compiled from source,...

When you create an integral in MathLive, the cursor positions appear to be as follows: 1. before 2. lower bound 3. upper bound 4. after Using backspace, the upper and...

I tried this code using ordinary DIV elements: ```js let divs = []; for (let i=0; i { console.log(div.name + " focused")}); div.addEventListener('blur', () => { console.log(div.name + " lost...

### Example fix Here is an example which resolves the above specific case by using `deleteBackward` in a loop instead of maintaining separate range delete logic https://github.com/jgranick/mathlive/commit/cdddd7aaa23055a3029a5f6a25723ea41fca67ae

I think it would be most flexible to add `public var timestamp:Int` to `lime.app.Event`. We can set it to 0 at first, then it is possible to use it like...

Here's a somewhat more complex idea we could consider: 1.) We add a `private var __timestamp:Int = -1` property to `lime.app.Event` 2.) We add `public var timestamp(default, null):Int` to `lime.app.Event`...