12033: Fix site status indicators.
[arvados.git] / apps / workbench / app / assets / javascripts / application.js
index 65e856df3a90143a5955def3698acc89784ff438..aa589ed28c7742b8103a8c63d300435fdf69eff9 100644 (file)
@@ -1,3 +1,7 @@
+// Copyright (C) The Arvados Authors. All rights reserved.
+//
+// SPDX-License-Identifier: AGPL-3.0
+//
 // This is a manifest file that'll be compiled into application.js, which will include all the files
 // listed below.
 //
 //= require raphael
 //= require morris
 //= require jquery.number.min
+//= require npm-dependencies
+//= require mithril/stream/stream
 //= require_tree .
 
+window.m = Object.assign(window.Mithril, {stream: window.m.stream})
+
 jQuery(function($){
     $(document).ajaxStart(function(){
       $('.modal-with-loading-spinner .spinner').show();
@@ -150,7 +158,9 @@ jQuery(function($){
             // Need this to trigger input validation/synchronization callbacks because some browsers
             // auto-fill form fields (e.g., when navigating "back" to a page where some text
             // had been entered in a search box) without triggering a change or input event.
-            $('input').trigger('input');
+            $('input').each(function(el) {
+                $(el).trigger($.Event('input', {currentTarget: el}));
+            });
         });
 
     HeaderRowFixer = function(selector) {