Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
O
our_own_cloud_project
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
die_coolen_jungs
our_own_cloud_project
Commits
d110e603
Commit
d110e603
authored
11 years ago
by
Victor Dubiniuk
Browse files
Options
Downloads
Patches
Plain Diff
Hide a ghost image on the apps management page
parent
f3c4a37a
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
settings/js/apps.js
+5
-0
5 additions, 0 deletions
settings/js/apps.js
settings/templates/apps.php
+1
-1
1 addition, 1 deletion
settings/templates/apps.php
with
6 additions
and
1 deletion
settings/js/apps.js
+
5
−
0
View file @
d110e603
...
...
@@ -20,6 +20,11 @@ OC.Settings.Apps = OC.Settings.Apps || {
page
.
find
(
'
span.score
'
).
html
(
app
.
score
);
page
.
find
(
'
p.description
'
).
text
(
app
.
description
);
page
.
find
(
'
img.preview
'
).
attr
(
'
src
'
,
app
.
preview
);
if
(
app
.
preview
&&
app
.
preview
.
length
)
{
page
.
find
(
'
img.preview
'
).
show
();
}
else
{
page
.
find
(
'
img.preview
'
).
hide
();
}
page
.
find
(
'
small.externalapp
'
).
attr
(
'
style
'
,
'
visibility:visible
'
);
page
.
find
(
'
span.author
'
).
text
(
app
.
author
);
page
.
find
(
'
span.licence
'
).
text
(
app
.
licence
);
...
...
This diff is collapsed.
Click to expand it.
settings/templates/apps.php
+
1
−
1
View file @
d110e603
...
...
@@ -34,7 +34,7 @@
class=
"version"
></span><small
class=
"externalapp"
style=
"visibility:hidden;"
></small></h3>
<span
class=
"score"
></span>
<p
class=
"description"
></p>
<img
src=
""
class=
"preview"
/>
<img
src=
""
class=
"preview
hidden
"
/>
<p
class=
"appslink hidden"
><a
href=
"#"
target=
"_blank"
>
<?php
p
(
$l
->
t
(
'See application page at apps.owncloud.com'
));
?>
</a></p>
<p
class=
"license hidden"
>
<?php
...
...
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