mirror of
https://github.com/Jermolene/TiddlyWiki5.git
synced 2025-12-06 02:30:46 -08:00
Fix crash loading large files
Attempts to load large files are neutered with a warning message Is 100MB the right limit?
This commit is contained in:
parent
0b3efc2771
commit
55dbce10f4
2 changed files with 14 additions and 2 deletions
|
|
@ -19,6 +19,10 @@ var _bootprefix = (function($tw) {
|
|||
$tw = $tw || Object.create(null);
|
||||
$tw.boot = $tw.boot || Object.create(null);
|
||||
|
||||
// Config
|
||||
$tw.config = $tw.config || Object.create(null);
|
||||
$tw.config.maxEditFileSize = 100 * 1024 * 1024; // 100MB
|
||||
|
||||
// Detect platforms
|
||||
if(!("browser" in $tw)) {
|
||||
$tw.browser = typeof(window) !== "undefined" && typeof(document) !== "undefined" ? {} : null;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue