migrate groups:milestones:show to static bundle

This commit is contained in:
Mike Greiling 2018-02-02 16:09:34 -06:00
parent d163f90612
commit 5fa3bd1787
No known key found for this signature in database
GPG key ID: 0303DF507FA67596
2 changed files with 1 additions and 6 deletions

View file

@ -53,11 +53,6 @@ var Dispatcher;
case 'projects:issues:show':
shortcut_handler = true;
break;
case 'groups:milestones:show':
import('./pages/groups/milestones/show')
.then(callDefault)
.catch(fail);
break;
case 'dashboard:milestones:show':
import('./pages/dashboard/milestones/show')
.then(callDefault)

View file

@ -1,3 +1,3 @@
import initMilestonesShow from '~/pages/milestones/shared/init_milestones_show';
export default initMilestonesShow;
document.addEventListener('DOMContentLoaded', initMilestonesShow);