Forked from oshliaer/.google_drive_mimetypes_are_tied_with_static_icons.md
Created
July 24, 2017 17:06
-
-
Save hiddentribe/3b227d8bfccec6029fa9f06435e53fef to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function getIconUrl(mimeType) { | |
| var url = 'https://ssl.gstatic.com/images/icons/material/system/svg/'; | |
| var lib = { | |
| 'application/vnd.google-apps.script': 'drive_script_24px.svg', | |
| 'application/vnd.google-apps.site': 'drive_site_24px.svg', | |
| 'application/vnd.google-apps.folder': 'folder_24px.svg', | |
| 'application/vnd.google-apps.document': 'drive_document_24px.svg', | |
| 'application/vnd.google-apps.spreadsheet': 'drive_spreadsheet_24px.svg', | |
| 'application/vnd.google-apps.audio': 'drive_audio_24px.svg', | |
| 'application/vnd.google-apps.drawing': 'drive_drawing_24px.svg', | |
| 'application/vnd.google-apps.form': 'drive_form_24px.svg', | |
| 'application/vnd.google-apps.fusiontable': 'drive_fusiontable_24px.svg', | |
| 'application/vnd.google-apps.map': 'file_map_24px.svg', | |
| 'application/vnd.google-apps.unknown': 'unknown_1_24px.svg', | |
| 'application/vnd.google-apps.presentation': 'drive_presentation_24px.svg', | |
| 'application/vnd.google-apps.video': 'drive_video_24px.svg' | |
| }; | |
| url += lib.hasOwnProperty(mimeType) ? lib[mimeType] : 'drive_file_24px.svg'; | |
| return url; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment