mirror of
https://github.com/nextcloud/server.git
synced 2026-04-04 00:25:45 -04:00
Allow selecting the root folder
Signed-off-by: Robin Appelman <robin@icewind.nl>
This commit is contained in:
parent
b5599a7673
commit
f002a2d2f6
1 changed files with 5 additions and 1 deletions
|
|
@ -223,7 +223,11 @@ var OCdialogs = {
|
|||
// Hence this is one of the approach to get the choose button.
|
||||
var getOcDialog = self.$filePicker.closest('.oc-dialog');
|
||||
var buttonEnableDisable = getOcDialog.find('.primary');
|
||||
buttonEnableDisable.prop("disabled", "true");
|
||||
if (self.$filePicker.data('mimetype') === "httpd/unix-directory") {
|
||||
buttonEnableDisable.prop("disabled", false);
|
||||
} else {
|
||||
buttonEnableDisable.prop("disabled", true);
|
||||
}
|
||||
|
||||
if (!OC.Util.hasSVGSupport()) {
|
||||
OC.Util.replaceSVG(self.$filePicker.parent());
|
||||
|
|
|
|||
Loading…
Reference in a new issue