Merge pull request #1832 from MaxLeiter/media
Rename thumbnail/image option to more general `media`
This commit is contained in:
commit
b9f1b9fd4d
@ -44,7 +44,7 @@ userOptions = null;
|
|||||||
module.exports = options;
|
module.exports = options;
|
||||||
|
|
||||||
module.exports.shouldOpenMessagePreview = function(type) {
|
module.exports.shouldOpenMessagePreview = function(type) {
|
||||||
return (options.links && type === "link") || (options.media && (type === "image" || type === "audio"));
|
return type === "link" ? options.links : options.media;
|
||||||
};
|
};
|
||||||
|
|
||||||
module.exports.initialize = () => {
|
module.exports.initialize = () => {
|
||||||
|
@ -74,8 +74,8 @@
|
|||||||
</div>
|
</div>
|
||||||
<div class="col-sm-6">
|
<div class="col-sm-6">
|
||||||
<label class="opt">
|
<label class="opt">
|
||||||
<input type="checkbox" name="thumbnails">
|
<input type="checkbox" name="media">
|
||||||
Auto-expand images
|
Auto-expand media
|
||||||
</label>
|
</label>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-sm-6">
|
<div class="col-sm-6">
|
||||||
|
Loading…
Reference in New Issue
Block a user