aa440eb1c0
It's needed due to https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/10777 being merged with squash.
14 lines
377 B
JavaScript
14 lines
377 B
JavaScript
import LinkedTabs from './lib/utils/bootstrap_linked_tabs';
|
|
|
|
export default class Pipelines {
|
|
constructor(options = {}) {
|
|
if (options.initTabs && options.tabsOptions) {
|
|
// eslint-disable-next-line no-new
|
|
new LinkedTabs(options.tabsOptions);
|
|
}
|
|
|
|
if (options.pipelineStatusUrl) {
|
|
gl.utils.setCiStatusFavicon(options.pipelineStatusUrl);
|
|
}
|
|
}
|
|
}
|