Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
aggrid
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
aggrid
Merge requests
!5
Update aggrid.widget.js
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Update aggrid.widget.js
issue/aggrid-3381000:3381000-need-to-switch
into
8.x-1.x
Overview
0
Commits
1
Pipelines
2
Changes
1
Merged
Mike Feranda
requested to merge
issue/aggrid-3381000:3381000-need-to-switch
into
8.x-1.x
1 year ago
Overview
0
Commits
1
Pipelines
2
Changes
1
Expand
Closes
#3381000
0
0
Merge request reports
Compare
8.x-1.x
version 1
6207b599
1 year ago
8.x-1.x (base)
and
latest version
latest version
6207b599
1 commit,
1 year ago
version 1
6207b599
1 commit,
1 year ago
1 file
+
2
−
2
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
js/aggrid.widget.js
+
2
−
2
Options
@@ -127,7 +127,7 @@
// If aggrid instance is already registered on Element. There is no
// need to register it again.
if
(
once
(
'
aggridDiv
'
,
'
body
'
).
length
!==
aggridDiv
.
length
)
{
if
(
once
(
'
aggridDiv
'
,
'
#
'
+
item
+
'
'
).
length
!==
aggridDiv
.
length
)
{
return
;
}
@@ -1507,7 +1507,7 @@
let
aggridTable
=
$
(
'
#
'
+
item
);
// Only run this once.
if
(
once
(
'
aggridTable
'
,
'
body
'
).
length
!==
aggridTable
.
length
)
{
if
(
once
(
'
aggridTable
'
,
'
#
'
+
item
+
'
'
).
length
!==
aggridTable
.
length
)
{
return
;
}
Loading