Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/text.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2022-09-03🐛 fix missing sharing tokenfix/noid/fix-sharing-folderVinicius Reis
Signed-off-by: Vinicius Reis <vinicius.reis@nextcloud.com>
2022-07-29rename EditorWrapper -> EditorMax
Signed-off-by: Max <max@nextcloud.com>
2022-05-23♻️ (#2345): remove id selectorsVinicius Reis
Signed-off-by: Vinicius Reis <vinicius.reis@nextcloud.com>
2022-05-09💄 (#2371): fix css precedenceVinicius Reis
Signed-off-by: Vinicius Reis <vinicius.reis@nextcloud.com>
2022-05-07🐛 (#2371): fix viewer integration stylingVinicius Reis
Signed-off-by: Vinicius Reis <vinicius.reis@nextcloud.com>
2022-05-03fix: specify file extensions in import statementsMax
As recommended in @nextcloud/eslint-config@8.0.0 https://github.com/nextcloud/eslint-config/pull/292 Signed-off-by: Max <max@nextcloud.com>
2022-04-19Fix height of editor-wrapper in viewer modal on mobileJonas
On mobile, `#modal-container` already has `top: 50px`, so no need to add another `top: 50px` in `#editor-container` in that case. Also, remove `top` property from `#editor-container` in EditorWrapper and RichWorkspace altogether. The correct place to set `top` to fit with the header bar from a modal is ViewerComponent. Fixes: #2203 Fixes: #2295 Signed-off-by: Jonas <jonas@freesources.org>
2021-06-10ViewerComponent: pass on autofocus to EditorWrapperAzul
The `ViewerComponent` is reused in the collectives app. Allow disabling autofocus when using the viewer component. Signed-off-by: Azul <azul@riseup.net>
2020-04-20Enable Text to be used by Viewer outside Files appDaniel Calviño Sánchez
Since Nextcloud 18.0.4 the Files app triggers the "LoadViewer" event, so that event can be used to register Text with Viewer instead of doing it through the "OCA\Files::loadAdditionalScripts" event. Besides being more correct for the Files app it also makes possible to use Text when opening files through Viewer in other apps, like Talk. Note, however, that in public share pages Text is still opened using the fallback actions instead of through Viewer, as Viewer currently does not provide the share token of the public shared folder that contains the file to be opened. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>