Jun Gu

Results 13 issues of Jun Gu

I figure out that when you trigger a Hot reload, `_RichTextWrapper` will invoke `updateRenderObject` and it will call `RenderParagraph`'s `text` setter to set a new `TextSpan` which call `TextSpan.compareTo` to...

![image](https://user-images.githubusercontent.com/8072733/59481843-9bb4c780-8e98-11e9-9793-4101a3151acb.png) ![image](https://user-images.githubusercontent.com/8072733/59481852-a8d1b680-8e98-11e9-818c-3cf628241cd1.png)

```js // origin $('button').click(function () { queue.add(processSomethingHeavy) .then(function ($loading) { status(); $loading.remove(); }, function (err) { $('' + err + '').appendTo('pre'); }); status(); }); ``` ```js // modified $('button').click(function ()...