Merge branch '8784-dir-listings'
[arvados.git] / apps / workbench / app / assets / javascripts / pipeline_instances.js
index 8bb25c13c080138641e6e8ed1a22124a585c44ae..7570b2f8a5f8718be81244afa0f24b525492e5d0 100644 (file)
@@ -1,3 +1,7 @@
+// Copyright (C) The Arvados Authors. All rights reserved.
+//
+// SPDX-License-Identifier: AGPL-3.0
+
 function run_pipeline_button_state() {
     var a = $('a.editable.required.editable-empty,input.form-control.required[value=""]');
     if ((a.length > 0) || ($('.unreadable-inputs-present').length)) {
@@ -101,26 +105,6 @@ $(document).on('ready ajax:success', function() {
     });
 });
 
-$(document).on('arv-log-event', '.arv-log-event-handler-append-logs', function(event, eventData){
-    if (this != event.target) {
-        // Not interested in events sent to child nodes.
-        return;
-    }
-    var wasatbottom = ($(this).scrollTop() + $(this).height() >= this.scrollHeight);
-
-    if (eventData.event_type == "stderr" || eventData.event_type == "stdout") {
-        if( eventData.prepend ) {
-            $(this).prepend(eventData.properties.text);
-        } else {
-            $(this).append(eventData.properties.text);
-        }
-    }
-
-    if (wasatbottom) {
-        this.scrollTop = this.scrollHeight;
-    }
-});
-
 // Set up all events for the pipeline instances compare button.
 (function() {
     var compare_form = '#compare';