Welcome to mirror list, hosted at ThFree Co, Russian Federation.

index.js « broadcast_messages « admin « pages « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b7db64436586f956a5f9062cf0f6995fc1b60b4b (plain)
1
2
3
4
5
6
7
import initDeprecatedRemoveRowBehavior from '~/behaviors/deprecated_remove_row_behavior';
import initBroadcastMessagesForm from './broadcast_message';

document.addEventListener('DOMContentLoaded', () => {
  initBroadcastMessagesForm();
  initDeprecatedRemoveRowBehavior();
});