mirror of
https://github.com/discourse/discourse.git
synced 2025-04-03 05:39:41 +08:00
UX: do not check for dimensions in video filename (#28349)
This commit is contained in:
parent
1ca06e1283
commit
b545576b3c
@ -31,7 +31,9 @@ function isUpload(token) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
function hasMetadata(token) {
|
function hasMetadata(token) {
|
||||||
return token.content.match(/(\d{1,4}x\d{1,4})/);
|
return !!token.content
|
||||||
|
.split("|")
|
||||||
|
.find((part) => /^\d{1,4}x\d{1,4}(,\s*\d{1,3}%)?$/.test(part));
|
||||||
}
|
}
|
||||||
|
|
||||||
function appendMetaData(index, token) {
|
function appendMetaData(index, token) {
|
||||||
|
@ -141,6 +141,13 @@ acceptance("Composer - Image Preview", function (needs) {
|
|||||||
`
|
`
|
||||||
);
|
);
|
||||||
|
|
||||||
|
// don't add controls to video uploads with dimensions in name
|
||||||
|
await fillIn(
|
||||||
|
".d-editor-input",
|
||||||
|
""
|
||||||
|
);
|
||||||
|
assert.dom(".button-wrapper").doesNotExist();
|
||||||
|
|
||||||
assert.ok(
|
assert.ok(
|
||||||
!exists("script"),
|
!exists("script"),
|
||||||
"it does not unescape script tags in code blocks"
|
"it does not unescape script tags in code blocks"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user