All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.visallo.web.structuredingest.spreadsheet.plugin.js Maven / Gradle / Ivy

There is a newer version: 4.0.0
Show newest version
define(['configuration/plugins/registry'], function(registry) {

    var CSV_MIME_TYPE = 'text/csv';
    var XSL_MIME_TYPES = ['application/xls',
         'application/excel',
         'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet'
    ];

    registry.registerExtension('org.visallo.structuredingest', {
        mimeType: CSV_MIME_TYPE
    });

    XSL_MIME_TYPES.forEach(function(m) {
        registry.registerExtension('org.visallo.structuredingest', {
            mimeType: m
        });
    });
})




© 2015 - 2024 Weber Informatics LLC | Privacy Policy