Merge pull request #572 from coffeemakr/allow-json-import-for-noscript

Allow JSON files as import from Noscript
pull/2/head
Raymond Hill 8 years ago committed by GitHub
commit cf4bb059f9

@ -179,7 +179,7 @@ var handleImportFilePicker = function() {
if ( file === undefined || file.name === '' ) {
return;
}
if ( file.type.indexOf('text') !== 0 ) {
if ( file.type.indexOf('text') !== 0 && file.type !== 'application/json') {
return;
}
var fr = new FileReader();

Loading…
Cancel
Save