Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
VLC-Android
Manage
Activity
Members
Labels
Plan
Issues
531
Issue boards
Milestones
Wiki
Code
Merge requests
13
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
VideoLAN
VLC-Android
Commits
9afc31cc
Commit
9afc31cc
authored
11 months ago
by
Nicolas Pomepuy
Browse files
Options
Downloads
Patches
Plain Diff
Fix huge performance issue when loading a long list of media
parent
06aff359
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!1848
Remote access:dark theme
Pipeline
#442117
passed with stages
in 23 minutes and 1 second
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
buildsystem/network-sharing-server/src/components/MediaItem.vue
+1
-1
1 addition, 1 deletion
...ystem/network-sharing-server/src/components/MediaItem.vue
buildsystem/network-sharing-server/src/components/UploadDialog.vue
+1
-1
1 addition, 1 deletion
...em/network-sharing-server/src/components/UploadDialog.vue
with
2 additions
and
2 deletions
buildsystem/network-sharing-server/src/components/MediaItem.vue
+
1
−
1
View file @
9afc31cc
...
...
@@ -149,7 +149,7 @@ export default {
}
},
mounted
()
{
var
tooltipTriggerList
=
[].
slice
.
call
(
document
.
querySelectorAll
(
'
[data-bs-toggle="tooltip"]
'
))
var
tooltipTriggerList
=
[].
slice
.
call
(
this
.
$el
.
querySelectorAll
(
'
[data-bs-toggle="tooltip"]
'
))
tooltipTriggerList
.
map
(
function
(
tooltipTriggerEl
)
{
return
new
Tooltip
(
tooltipTriggerEl
,
{
trigger
:
'
hover
'
...
...
This diff is collapsed.
Click to expand it.
buildsystem/network-sharing-server/src/components/UploadDialog.vue
+
1
−
1
View file @
9afc31cc
...
...
@@ -126,7 +126,7 @@ export default {
e
.
stopPropagation
();
}
.
bind
(
this
),
false
);
var
tooltipTriggerList
=
[].
slice
.
call
(
document
.
querySelectorAll
(
'
[data-bs-toggle="tooltip"]
'
))
var
tooltipTriggerList
=
[].
slice
.
call
(
this
.
$el
.
querySelectorAll
(
'
[data-bs-toggle="tooltip"]
'
))
tooltipTriggerList
.
map
(
function
(
tooltipTriggerEl
)
{
return
new
Tooltip
(
tooltipTriggerEl
,
{
trigger
:
'
hover
'
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment