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

index.js « index « 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: 1f37df2b34067d6b0ddc44d051dba2edd02d5ca4 (plain)
1
2
3
4
5
6
7
8
9
10
import initBroadcastMessages from '~/admin/broadcast_messages';
import initDeprecatedRemoveRowBehavior from '~/behaviors/deprecated_remove_row_behavior';
import initBroadcastMessagesForm from '../broadcast_message';

if (gon.features.vueBroadcastMessages) {
  initBroadcastMessages();
} else {
  initBroadcastMessagesForm();
  initDeprecatedRemoveRowBehavior();
}