Minor README tweaks
This commit is contained in:
parent
48a724931f
commit
ce4dd8c272
5 changed files with 17 additions and 19 deletions
|
|
@ -648,10 +648,9 @@ Component.prototype = {
|
|||
return function printPanel(s, type) {
|
||||
s = (type !== undefined? (type + ": ") : "") + (s || "");
|
||||
/*
|
||||
* In all but MAXDEBUG builds, prevent the <textarea> from getting too large;
|
||||
* otherwise, printing becomes slower and slower.
|
||||
* Prevent the <textarea> from getting too large; otherwise, printing becomes slower and slower.
|
||||
*/
|
||||
if (!MAXDEBUG) {
|
||||
if (COMPILED) {
|
||||
if (control.value.length > 8192) {
|
||||
control.value = control.value.substr(control.value.length - 4096);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue