Этот коммит содержится в:
Yusuke Nemoto
2017-04-13 06:26:02 +09:00
коммит произвёл Corey Hulen
родитель 9b9788cf11
Коммит 0aa84799fd
4 изменённых файлов: 8 добавлений и 3 удалений

Просмотреть файл

@@ -335,6 +335,7 @@ export const Constants = {
CODE_TYPES: ['as', 'applescript', 'osascript', 'scpt', 'bash', 'sh', 'zsh', 'clj', 'boot', 'cl2', 'cljc', 'cljs', 'cljs.hl', 'cljscm', 'cljx', 'hic', 'coffee', '_coffee', 'cake', 'cjsx', 'cson', 'iced', 'cpp', 'c', 'cc', 'h', 'c++', 'h++', 'hpp', 'cs', 'csharp', 'css', 'd', 'di', 'dart', 'delphi', 'dpr', 'dfm', 'pas', 'pascal', 'freepascal', 'lazarus', 'lpr', 'lfm', 'diff', 'django', 'jinja', 'dockerfile', 'docker', 'erl', 'f90', 'f95', 'fsharp', 'fs', 'gcode', 'nc', 'go', 'groovy', 'handlebars', 'hbs', 'html.hbs', 'html.handlebars', 'hs', 'hx', 'java', 'jsp', 'js', 'jsx', 'json', 'jl', 'kt', 'ktm', 'kts', 'less', 'lisp', 'lua', 'mk', 'mak', 'md', 'mkdown', 'mkd', 'matlab', 'm', 'mm', 'objc', 'obj-c', 'ml', 'perl', 'pl', 'php', 'php3', 'php4', 'php5', 'php6', 'ps', 'ps1', 'pp', 'py', 'gyp', 'r', 'ruby', 'rb', 'gemspec', 'podspec', 'thor', 'irb', 'rs', 'scala', 'scm', 'sld', 'scss', 'st', 'sql', 'swift', 'tex', 'txt', 'vbnet', 'vb', 'bas', 'vbs', 'v', 'veo', 'xml', 'html', 'xhtml', 'rss', 'atom', 'xsl', 'plist', 'yaml'],
PDF_TYPES: ['pdf'],
PATCH_TYPES: ['patch'],
SVG_TYPES: ['svg'],
ICON_FROM_TYPE: {
audio: audioIcon,
video: videoIcon,

Просмотреть файл

@@ -426,6 +426,10 @@ export function getFileType(extin) {
return 'patch';
}
if (Constants.SVG_TYPES.indexOf(ext) > -1) {
return 'svg';
}
return 'other';
}
@@ -449,7 +453,7 @@ export function getIconClassName(fileTypeIn) {
return Constants.ICON_NAME_FROM_TYPE[fileType];
}
return 'glyphicon-file';
return 'generic';
}
export function splitFileLocation(fileLocation) {