Builtin Prosody, Share chat url: ability to show/hide the scrollbar in readonly mode.

This commit is contained in:
John Livingston
2022-01-04 17:42:03 +01:00
parent 7db4d355fb
commit 04b1945239
16 changed files with 70 additions and 8 deletions

View File

@ -4,7 +4,7 @@ import { logger } from './logger'
import { computeAutoColors } from './colors'
interface UriOptions {
readonly?: boolean
readonly?: boolean | 'noscroll'
ignoreAutoColors?: boolean
permanent?: boolean
}
@ -79,7 +79,7 @@ function getIframeUri (
}
if (uriOptions.readonly) {
iFrameUri.searchParams.set('_readonly', 'true')
iFrameUri.searchParams.set('_readonly', (typeof uriOptions.readonly === 'string') ? uriOptions.readonly : 'true')
}
iframeUriStr = iFrameUri.href