added code differences from EE to CE

This commit is contained in:
Michel Engelen 2019-06-07 09:06:42 +00:00 committed by Filipa Lacerda
parent a18b7e7e2b
commit fefe100874
2 changed files with 17 additions and 0 deletions

View File

@ -39,6 +39,11 @@ export default class Project {
$label.text(activeText);
});
$('#modal-geo-info').data({
cloneUrlSecondary: $this.attr('href'),
cloneUrlPrimary: $this.data('primaryUrl') || '',
});
if (mobileCloneField) {
mobileCloneField.dataset.clipboardText = url;
} else {
@ -67,6 +72,13 @@ export default class Project {
.remove();
return e.preventDefault();
});
$('.hide-shared-runner-limit-message').on('click', function(e) {
var $alert = $(this).parents('.shared-runner-quota-message');
var scope = $alert.data('scope');
Cookies.set('hide_shared_runner_quota_message', 'false', { path: scope });
$alert.remove();
e.preventDefault();
});
$('.hide-auto-devops-implicitly-enabled-banner').on('click', function(e) {
const projectId = $(this).data('project-id');
const cookieKey = `hide_auto_devops_implicitly_enabled_banner_${projectId}`;

View File

@ -0,0 +1,5 @@
---
title: "Added code differnces from EE in file 'app/assets/javascripts/pages/projects/project.js' to CE"
merge_request: 29271
author: Michel Engelen
type: other