refactor _this usage into proper function binding

This commit is contained in:
Mike Greiling 2016-12-11 21:18:40 -06:00
parent a6ed18cc71
commit 4f8087d62b
1 changed files with 11 additions and 15 deletions

View File

@ -25,13 +25,11 @@
this.hideReferencedUsers(form);
} else {
preview.text('Loading...');
this.renderMarkdown(mdText, (function(_this) {
return function(response) {
preview.html(response.body);
preview.renderGFM();
_this.renderReferencedUsers(response.references.users, form);
};
})(this));
this.renderMarkdown(mdText, (function(response) {
preview.html(response.body);
preview.renderGFM();
this.renderReferencedUsers(response.references.users, form);
}).bind(this));
}
};
@ -50,15 +48,13 @@
text: text
},
dataType: 'json',
success: (function(_this) {
return function(response) {
_this.ajaxCache = {
text: text,
response: response
};
success(response);
success: (function(response) {
this.ajaxCache = {
text: text,
response: response
};
})(this)
success(response);
}).bind(this)
});
};