Closes #998, Add FreeMind files to external text extensions array

Adds video/x-flv content detection
This commit is contained in:
Dan Stillman 2008-04-26 01:41:38 +00:00
parent 3c6e9afc27
commit a7f1306e3b

View File

@ -48,7 +48,9 @@ Zotero.MIME = new function(){
["GIF8", 'image/gif', 0],
["\uFFFDPNG", 'image/png', 0],
["PK\x03\x04", "application/vnd.oasis.opendocument.text", 0],
["JFIF", 'image/jpeg']
["JFIF", 'image/jpeg'],
["FLV", "video/x-flv", 0]
];
var _textTypes = {
@ -73,7 +75,8 @@ Zotero.MIME = new function(){
// Extensions of text files (generally XML) to force to be external
var _externalTextExtensions = {
'graffle': true
graffle: true,
mm: true
};