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

issuable_index.js « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5a57da292a0c3a63043198dfea476d6fd8fcfd1d (plain)
1
2
3
4
5
6
7
import issuableInitBulkUpdateSidebar from '~/issuable_bulk_update_sidebar/issuable_init_bulk_update_sidebar';

export default class IssuableIndex {
  constructor(pagePrefix = 'issuable_') {
    issuableInitBulkUpdateSidebar.init(pagePrefix);
  }
}