Initialize module on bundle load

This commit is contained in:
kushalpandya 2017-07-20 17:38:35 +05:30
parent 083ad12070
commit 4b45a1b322
2 changed files with 18 additions and 4 deletions

View File

@ -1,2 +1,9 @@
export { default as ProtectedBranchCreate } from './protected_branch_create';
export { default as ProtectedBranchEditList } from './protected_branch_edit_list';
/* eslint-disable no-unused-vars */
import ProtectedBranchCreate from './protected_branch_create';
import ProtectedBranchEditList from './protected_branch_edit_list';
$(() => {
const protectedBranchCreate = new ProtectedBranchCreate();
const protectedBranchEditList = new ProtectedBranchEditList();
});

View File

@ -1,2 +1,9 @@
export { default as ProtectedTagCreate } from './protected_tag_create';
export { default as ProtectedTagEditList } from './protected_tag_edit_list';
/* eslint-disable no-unused-vars */
import ProtectedTagCreate from './protected_tag_create';
import ProtectedTagEditList from './protected_tag_edit_list';
$(() => {
const protectedtTagCreate = new ProtectedTagCreate();
const protectedtTagEditList = new ProtectedTagEditList();
});