Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
eu_cookie_compliance_rocketship
Manage
Activity
Members
Labels
Plan
Wiki
Custom issue tracker
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
project
eu_cookie_compliance_rocketship
Merge requests
!7
Automated Drupal 10 compatibility fixed
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Automated Drupal 10 compatibility fixed
issue/eu_cookie_compliance_rocketship-3304021:1.0.x
into
1.1.x
Overview
0
Commits
3
Pipelines
0
Changes
7
Merged
Shivam Tiwari
requested to merge
issue/eu_cookie_compliance_rocketship-3304021:1.0.x
into
1.1.x
1 year ago
Overview
0
Commits
3
Pipelines
0
Changes
7
Expand
Please review and merge if looks good.
0
0
Merge request reports
Compare
1.1.x
version 4
d2c7ae10
1 year ago
version 3
d2c7ae10
1 year ago
version 2
de2622ac
1 year ago
version 1
3a66f5d9
1 year ago
1.1.x (base)
and
latest version
latest version
46ce075e
3 commits,
1 year ago
version 4
d2c7ae10
3 commits,
1 year ago
version 3
d2c7ae10
3 commits,
1 year ago
version 2
de2622ac
2 commits,
1 year ago
version 1
3a66f5d9
1 commit,
1 year ago
7 files
+
35
−
25
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
7
Search (e.g. *.vue) (Ctrl+P)
js/eu-cookie-compliance-rocketship--reopen-link.js
+
3
−
4
Options
/*global Drupal, jQuery*/
Drupal
.
behaviors
.
euccRocketshipReopenLink
=
{
attach
:
function
(
context
,
settings
)
{
(
function
(
$
)
{
(
function
(
$
,
once
)
{
function
show_eucc_popup
()
{
var
popup
=
$
(
'
#sliding-popup
'
);
@@ -22,8 +22,7 @@ Drupal.behaviors.euccRocketshipReopenLink = {
}
// Init when the popup has opened
var
body
=
$
(
'
body
'
);
body
.
once
(
'
euccRocketshipReopenLink
'
).
each
(
function
()
{
once
(
'
euccRocketshipReopenLink
'
,
'
body
'
).
forEach
(
function
()
{
var
links
=
$
(
'
a[href$="#eucc-open"]
'
);
links
.
click
(
function
(
e
)
{
e
.
preventDefault
();
@@ -36,6 +35,6 @@ Drupal.behaviors.euccRocketshipReopenLink = {
show_eucc_popup
();
});
}(
jQuery
));
}(
jQuery
,
once
));
}
};
Loading