mirror of
https://git.sekbaer.de/Friendica/friendica.git
synced 2025-06-10 09:04:26 +02:00
Ensure theme consistency when using filebrowser
- Send frio filebrowser result to current frame instead of parent one
This commit is contained in:
parent
611220cb53
commit
a88df9b259
3 changed files with 14 additions and 13 deletions
|
@ -120,7 +120,7 @@ Dialog.show = function(url, title) {
|
|||
Dialog._get_url = function(type, name, id) {
|
||||
var hash = name;
|
||||
if (id !== undefined) hash = hash + "-" + id;
|
||||
return "fbrowser/"+type+"/?mode=none#"+hash;
|
||||
return "fbrowser/"+type+"/?mode=none&theme=frio#"+hash;
|
||||
};
|
||||
|
||||
// Does load the filebrowser into the jot modal.
|
||||
|
@ -148,7 +148,7 @@ Dialog._load = function(url) {
|
|||
var type = $("#fb-type").attr("value");
|
||||
|
||||
// Try to fetch the hash form the url.
|
||||
var match = url.match(/fbrowser\/[a-z]+\/\?mode=none(.*)/);
|
||||
var match = url.match(/fbrowser\/[a-z]+\/.*(#.*)/);
|
||||
if (match===null) return; //not fbrowser
|
||||
var hash = match[1];
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue