Results 26 comments of hamflx
trafficstars

@sylvestre I have added integration test.

@sylvestre @tertsdiepraam Is there anything else I need to do if I want this PR to be merged?

这个问题是因为 `tinymce` 动态插入 `link` 标签的时候,是先 `appendChild` 再 `setAttribute`,代码见:。 然后 `wujie` 在 `appendChild` 的处理方法内,忽略了 `href` 为空的情况,导致这个样式没有被加载,代码见:。 解决方法很简单,直接改 `node_modules/tinymce/tinymce.js`,将如下代码: ```javascript addStyle(linkElem); set$3(linkElem, 'href', urlWithSuffix); ``` 改为: ```javascript set$3(linkElem, 'href', urlWithSuffix); addStyle(linkElem); ```...

@yiludege 这个问题应该可以通过劫持 setAttribute 来解决,这个方案可行的话,我提个 pr?

solution1 应该会丢失 upload 的进度。我这临时写了简陋的不损失 upload 进度的方案: ```javascript import { mock, XHR } from 'mockjs' const originalMockXhrOpen = XHR.prototype.open Object.defineProperty(XHR.prototype, 'upload', { get () { const custom = this.custom if (!custom.pendingEvents)...

另外 solution2 为什么可以使用啊,那个时候还没有 this 吧?

> > 如何评价拼多多疑似利用漏洞攻击用户手机,窃取竞争对手软件数据,防止自己被卸载? - Gracker的回答 - 知乎 https://www.zhihu.com/question/587624599/answer/2927765317 > > 知乎已屏蔽此问题 https://archive.is/nTfo7

有没有老哥给个办法检测卸载后pdd后的鸿蒙OS上还有没有后门。

@SuperMan9328 老哥给个传送门,刚刚粗略看了一眼 315,没找到。主要 315 视频太长了,给点提示是开头、结尾还是中间,我再仔细去找找。

I added the disqus comment section to footer.hbs. Also for websites in China you need to put icp record information at the bottom of the website. ![image](https://user-images.githubusercontent.com/13356747/166401781-42484b46-ce91-4d2b-a1f2-3efb539430ab.png)