Use el.innerHTML = ''; instead of $(el).empty()

It turns out that jQuery's empty method can be really slow in Firefox,
which can freeze the browser when cleaning the log.
This commit is contained in:
Piotr Sarnacki 2015-12-29 12:49:47 +01:00
parent 6e73923fbb
commit 21285bbe8b

View File

@ -90,8 +90,8 @@ export default Ember.Component.extend({
if ((ref = this.lineSelector) != null) {
ref.willDestroy();
}
if (logElement = this.$('#log')) {
return logElement.empty();
if (logElement = this.$('#log')[0]) {
logElement.innerHTML = '';
}
}
},
@ -99,8 +99,8 @@ export default Ember.Component.extend({
createEngine(log) {
var logElement;
if (log || (log = this.get('log'))) {
if (logElement = this.$('#log')) {
logElement.empty();
if (logElement = this.$('#log')[0]) {
logElement.innerHTML = '';
}
log.onClear(() => {
this.teardownLog();