Skip to content

Commit

Permalink
Merge pull request #2 from MacaylaMarvelous81/patch-1
Browse files Browse the repository at this point in the history
Change MIME type to application/octet-stream
  • Loading branch information
PopThosePringles authored Mar 10, 2021
2 parents 72aea83 + cec7471 commit c4ce7ec
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
Objects: <span id="total">0</span> &nbsp;/&nbsp; After Merge: <span id="mergetotal">0</span>
</div>
<div id="help">
Drop file into your Templates folder (not directly in the editor).
Drop file into your Data/Templates folder (not directly in the editor).
</div>
</div>
</div>
Expand All @@ -58,4 +58,4 @@
<a href="https://github.com/PopThosePringles/Core-Image-To-Template">GitHub</a> | <a href="https://github.com/PopThosePringles/Core-Image-To-Template/commits/master">Latest Changes</a>
</div>
</body>
</html>
</html>
2 changes: 1 addition & 1 deletion js/scripts.js
Original file line number Diff line number Diff line change
Expand Up @@ -978,7 +978,7 @@ class Pixel_Art_To_Template {
}

static save(f, d, objs){
let blob = new Blob([d], {type: "text/plain"});
let blob = new Blob([d], {type: "application/octet-stream"});
let elem = window.document.createElement("a");

elem.href = window.URL.createObjectURL(blob);
Expand Down

0 comments on commit c4ce7ec

Please sign in to comment.