Commit 4f8087d6 authored by Mike Greiling's avatar Mike Greiling

refactor _this usage into proper function binding

parent a6ed18cc
...@@ -25,13 +25,11 @@ ...@@ -25,13 +25,11 @@
this.hideReferencedUsers(form); this.hideReferencedUsers(form);
} else { } else {
preview.text('Loading...'); preview.text('Loading...');
this.renderMarkdown(mdText, (function(_this) { this.renderMarkdown(mdText, (function(response) {
return function(response) { preview.html(response.body);
preview.html(response.body); preview.renderGFM();
preview.renderGFM(); this.renderReferencedUsers(response.references.users, form);
_this.renderReferencedUsers(response.references.users, form); }).bind(this));
};
})(this));
} }
}; };
...@@ -50,15 +48,13 @@ ...@@ -50,15 +48,13 @@
text: text text: text
}, },
dataType: 'json', dataType: 'json',
success: (function(_this) { success: (function(response) {
return function(response) { this.ajaxCache = {
_this.ajaxCache = { text: text,
text: text, response: response
response: response
};
success(response);
}; };
})(this) success(response);
}).bind(this)
}); });
}; };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment