diff --git a/exec/dorkit/jsexec_console.js b/exec/dorkit/jsexec_console.js index 0b1d546683664a1a72db2fe1412fb27c38ea532b..728567e67c4c24d1fe8bee2a9af79ea0fbefae4b 100644 --- a/exec/dorkit/jsexec_console.js +++ b/exec/dorkit/jsexec_console.js @@ -1,11 +1,9 @@ /* * Clears the current screen to black and moves to location 1,1 - * sets the current attribute to 7 */ dk.console.remote_io = { clear:function() { - this.attr.value=7; this.print("\x0c"); }, diff --git a/exec/dorkit/sbbs_console.js b/exec/dorkit/sbbs_console.js index cbfd44c6e1dbf90a6b67be1fd49223c10fea5560..4116596a934c545c308847d1641d14e424ac9900 100644 --- a/exec/dorkit/sbbs_console.js +++ b/exec/dorkit/sbbs_console.js @@ -4,12 +4,11 @@ console.ctrlkey_passthru=0x7fffffff; // Disable all parsing. /* * Clears the current screen to black and moves to location 1,1 - * sets the current attribute to 7 */ dk.console.remote_io = { clear:function() { - console.clear(7); + console.clear(); }, /* diff --git a/exec/dorkit/socket_console.js b/exec/dorkit/socket_console.js index 9a2327f72d8076cba06f85161a0c2a6fd2d8d62d..4ce954101632283fb78a30d62852d0206adb79e9 100644 --- a/exec/dorkit/socket_console.js +++ b/exec/dorkit/socket_console.js @@ -1,12 +1,10 @@ /* * Clears the current screen to black and moves to location 1,1 - * sets the current attribute to 7 */ dk.console.remote_io = { sock:new Socket(true, dk.connection.socket), clear:function() { - dk.console.attr.value=7; this.print("\x0c"); },