Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
drupal
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
drupal
Merge requests
!55
An error occurred while fetching the assigned milestone of the selected merge_request.
Draft: Resolve
#2855521
"Drupallink called by drupalimage"
Code
Review changes
Check out branch
Download
Patches
Plain diff
Open
Draft: Resolve
#2855521
"Drupallink called by drupalimage"
issue/drupal-2855521:2855521-drupallink-called-by-drupalimage
into
8.8.x
Overview
0
Commits
2
Pipelines
0
Changes
3
Open
Jonathan Theobald
requested to merge
issue/drupal-2855521:2855521-drupallink-called-by-drupalimage
into
8.8.x
4 years ago
Overview
0
Commits
2
Pipelines
0
Changes
3
Expand
Closes
#2855521
0
0
Merge request reports
Compare
8.8.x
version 1
c3d853d1
4 years ago
8.8.x (base)
and
latest version
latest version
c3d853d1
2 commits,
4 years ago
version 1
c3d853d1
511 commits,
4 years ago
3 files
+
153
−
13
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
3
Search (e.g. *.vue) (Ctrl+P)
core/modules/ckeditor/js/plugins/drupalimage/plugin.es6.js
+
6
−
6
Options
@@ -387,12 +387,12 @@
// Override image2's integration with the official CKEditor link plugin:
// integrate with the drupallink plugin instead.
CKEDITOR
.
plugins
.
image2
.
getLinkAttributesParser
=
function
(
)
{
return
CKEDITOR
.
plugins
.
drupallink
.
parseLinkAttributes
;
}
;
CKEDITOR
.
plugins
.
image2
.
getLinkAttributesGetter
=
function
()
{
return
CKEDITOR
.
plugins
.
drupallink
.
getLinkAttributes
;
}
;
if
(
CKEDITOR
.
plugins
.
externals
.
drupallink
)
{
CKEDITOR
.
plugins
.
image2
.
getLinkAttributesParser
=
()
=>
CKEDITOR
.
plugins
.
drupallink
.
parseLinkAttributes
;
CKEDITOR
.
plugins
.
image2
.
getLinkAttributesGetter
=
()
=>
CKEDITOR
.
plugins
.
drupallink
.
getLinkAttributes
;
}
// Expose an API for other plugins to interact with drupalimage widgets.
CKEDITOR
.
plugins
.
drupalimage
=
{
Loading