migrate explore:projects:* to static bundle

This commit is contained in:
Mike Greiling 2018-02-02 16:30:28 -06:00
parent c6d6623040
commit 754dc137f7
No known key found for this signature in database
GPG Key ID: 0303DF507FA67596
2 changed files with 1 additions and 8 deletions

View File

@ -53,13 +53,6 @@ var Dispatcher;
case 'projects:issues:show':
shortcut_handler = true;
break;
case 'explore:projects:index':
case 'explore:projects:trending':
case 'explore:projects:starred':
import('./pages/explore/projects')
.then(callDefault)
.catch(fail);
break;
case 'explore:groups:index':
import('./pages/explore/groups')
.then(callDefault)

View File

@ -1,3 +1,3 @@
import ProjectsList from '~/projects_list';
export default () => new ProjectsList();
document.addEventListener('DOMContentLoaded', () => new ProjectsList());