- 這種現象只有在 Firefox 網址列發生。
- 估計只會在英文版的 Windows 上發生。
- 我習慣性是用 Ctrl + Shift 切換 English (US) 與 繁體中文 (倉頡),並非用Shift切換中英,因此遇到問題時非常困擾。
最近買咗Y700二代,生產日期比較新,跟機系統版本係 15.0.774,網上好多文章資源唔啱用。所以自己整理一下,方便日後更新。未必新手友好,本文假設你已懂得用 adb 和 fastboot,過往有 root 其他機經驗。
因 15.0.774 開始唔俾刷國際ROM,第3方ROM又好似問題多多,所以本文都係集中講中國ROM。
先送上資源: https://mega.nz/folder/icNnUQ6L#gqfxU4D4cvFEmnV4JnlM7Q
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function slowDoubleCallback(x, callback) { | |
setTimeout(() => { | |
callback(x * 2); | |
}, 200); | |
} | |
function slowDouble(x) { | |
return new Promise((resolve) => { | |
setTimeout(() => { | |
resolve(x * 2); |