Fixed mime type bug on Firefox

This commit is contained in:
jdescottes 2014-07-13 01:01:33 +02:00
parent e5cb0717e2
commit aa375315a2
2 changed files with 10 additions and 1 deletions

View File

@ -24,6 +24,7 @@
}
.png-export-preview img {
max-height:32px;
float: left;
}

View File

@ -2,9 +2,17 @@
var ns = $.namespace('pskl.utils');
ns.PiskelFileUtils = {
/**
* Load a piskel from a piskel file.
* After deserialization is successful, the provided success callback will be called.
* Success callback is expected to handle 3 arguments : (piskel:Piskel, descriptor:PiskelDescriptor, fps:Number)
* @param {File} file the .piskel file to load
* @param {Function} onSuccess Called if the deserialization of the piskel is successful
* @param {Function} onError NOT USED YET
*/
loadFromFile : function (file, onSuccess, onError) {
pskl.utils.FileUtils.readFile(file, function (content) {
var rawPiskel = window.atob(content.replace('data:;base64,',''));
var rawPiskel = window.atob(content.replace(/data\:.*?\;base64\,/,''));
var serializedPiskel = JSON.parse(rawPiskel);
var fps = serializedPiskel.piskel.fps;
var descriptor = new pskl.model.piskel.Descriptor(serializedPiskel.piskel.name, serializedPiskel.piskel.description, true);