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:
parent
6e73923fbb
commit
21285bbe8b
|
@ -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();
|
||||
|
|
Loading…
Reference in New Issue
Block a user