Fix 2.4.2 upgrade notes formatting refs #19330
[arvados.git] / apps / workbench / app / assets / javascripts / mithril_mount.js
1 // Copyright (C) The Arvados Authors. All rights reserved.
2 //
3 // SPDX-License-Identifier: AGPL-3.0
4
5 $(document).on('ready arv:pane:loaded', function() {
6     $('[data-mount-mithril]').each(function() {
7         var data = $(this).data()
8         m.mount(this, {view: function () {return m(window[data.mountMithril], data)}})
9     })
10 })