Fixed examples in Quote.md, rough Android visuals

This commit is contained in:
Scott Nonnenberg
2018-04-09 18:31:52 -07:00
parent 6653123671
commit 21bf02c94d
15 changed files with 408 additions and 59 deletions

View File

@@ -136,7 +136,8 @@
return this.model.contentType.startsWith('audio/');
},
isVideo() {
return this.model.contentType.startsWith('video/');
const type = this.model.contentType;
return type.startsWith('video/') && type !== 'image/wmv';
},
isImage() {
const type = this.model.contentType;