We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
将 index.min.js 中:
var n=localStorage.getItem(e.options.cache.id);
修改为
var n = e.options.cache.enable? localStorage.getItem(e.options.cache.id): ""
并将 cache.enable 设为 false
The text was updated successfully, but these errors were encountered:
如何禁用 localStorage
Sorry, something went wrong.
chrome中可以设置 chrome://settings/content/cookies
32ac24c
不启用缓存的情况下,依然会触发clearCache 报 localStorage 禁用的错误
n.prototype.clearCache = function() { localStorage.removeItem(this.vditor.options.cache.id) }
🎨 #429
2a2e276
Vanessa219
No branches or pull requests
截屏
临时修复方法
将 index.min.js 中:
修改为
并将 cache.enable 设为 false
The text was updated successfully, but these errors were encountered: