Skip to content

Commit

Permalink
Merge pull request #3677 from blutorange/feat-relative-image-link-in-…
Browse files Browse the repository at this point in the history
…theme-manifest

Allow image URL in theme manifest.json to be a relative link as well
  • Loading branch information
nao-pon authored Dec 3, 2024
2 parents 6c62ab8 + b0cd273 commit f20a0e7
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions js/elFinder.js
Original file line number Diff line number Diff line change
Expand Up @@ -10235,6 +10235,9 @@ elFinder.prototype = {
if (themeObj.cssurls) {
themeObj.cssurls = absUrl(themeObj.cssurls, m[1]);
}
if (themeObj.image) {
themeObj.image = absUrl(themeObj.image, m[1]);
}
dfd.resolve(themeObj);
}).fail(function() {
dfd.reject();
Expand Down

0 comments on commit f20a0e7

Please sign in to comment.