зеркало из https://github.com/nextcloud/text.git
Also load files app scripts when user is logged in
Signed-off-by: Julius Härtl <jus@bitgrid.net>
This commit is contained in:
Родитель
ef689e8812
Коммит
7a90be554c
|
@ -47,9 +47,6 @@ class FilesSharingLoadAdditionalScriptsListener implements IEventListener {
|
||||||
}
|
}
|
||||||
|
|
||||||
public function handle(Event $event): void {
|
public function handle(Event $event): void {
|
||||||
if (!$this->userSession->isLoggedIn()) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
\OCP\Util::addScript('text', 'public');
|
\OCP\Util::addScript('text', 'public');
|
||||||
\OCP\Util::addStyle('text', 'icons');
|
\OCP\Util::addStyle('text', 'icons');
|
||||||
|
|
||||||
|
|
|
@ -15,6 +15,10 @@ documentReady(() => {
|
||||||
const mimetype = document.getElementById('mimetype').value
|
const mimetype = document.getElementById('mimetype').value
|
||||||
const sharingToken = document.getElementById('sharingToken') ? document.getElementById('sharingToken').value : null
|
const sharingToken = document.getElementById('sharingToken') ? document.getElementById('sharingToken').value : null
|
||||||
|
|
||||||
|
if (!sharingToken) {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
if (dir !== '') {
|
if (dir !== '') {
|
||||||
OC.Plugins.register('OCA.Files.FileList', FilesWorkspacePlugin)
|
OC.Plugins.register('OCA.Files.FileList', FilesWorkspacePlugin)
|
||||||
registerFileActionFallback()
|
registerFileActionFallback()
|
||||||
|
|
Загрузка…
Ссылка в новой задаче