X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/c59093180fd92f0d7c6607a49458446212ebd058..65f13986f98a75f8da7cfe695ea5960ff741d402:/apps/workbench/app/assets/javascripts/pipeline_instances.js diff --git a/apps/workbench/app/assets/javascripts/pipeline_instances.js b/apps/workbench/app/assets/javascripts/pipeline_instances.js index 8bb25c13c0..7570b2f8a5 100644 --- a/apps/workbench/app/assets/javascripts/pipeline_instances.js +++ b/apps/workbench/app/assets/javascripts/pipeline_instances.js @@ -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';