Browse Source

Use the wait argument of the clear_output message

Steven Silvester 8 years ago
parent
commit
eef0230282
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/notebook/output-area/model.ts

+ 1 - 1
src/notebook/output-area/model.ts

@@ -178,7 +178,7 @@ class OutputAreaModel implements IDisposable {
           this.add(model);
           break;
         case 'clear_output':
-          this.clear(true);
+          this.clear((msg as KernelMessage.IClearOutputMsg).content.wait);
           break;
         default:
           break;