Merge pull request #271 from mklkj/fix-content-type

Fix contentType header in save request
This commit is contained in:
John Crepezzi 2020-10-06 01:18:34 -04:00 committed by GitHub
commit cc8a99752f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -64,7 +64,7 @@ haste_document.prototype.save = function(data, callback) {
type: 'post',
data: data,
dataType: 'json',
contentType: 'application/json; charset=utf-8',
contentType: 'text/plain; charset=utf-8',
success: function(res) {
_this.locked = true;
_this.key = res.key;

File diff suppressed because one or more lines are too long