FIX: Deprecated debounce function
This commit is contained in:
parent
587e9d917c
commit
37fe36778b
|
@ -1,3 +1,5 @@
|
|||
import debounce from 'discourse/lib/debounce';
|
||||
|
||||
export default Ember.Component.extend({
|
||||
|
||||
actions: {
|
||||
|
@ -111,7 +113,7 @@ export default Ember.Component.extend({
|
|||
return tables;
|
||||
},
|
||||
|
||||
triggerFilter: Discourse.debounce(function() {
|
||||
triggerFilter: debounce(function() {
|
||||
this.set('filteredTables', this.filterTables(this.get('transformedSchema')));
|
||||
this.set('loading', false);
|
||||
}, 500).observes('filter'),
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
import debounce from 'discourse/lib/debounce';
|
||||
import highlightSyntax from 'discourse/lib/highlight-syntax';
|
||||
|
||||
export default Ember.Component.extend({
|
||||
|
@ -7,7 +8,7 @@ export default Ember.Component.extend({
|
|||
buffer.push("</code></pre>");
|
||||
},
|
||||
|
||||
_refreshHighlight: Discourse.debounce(function() {
|
||||
_refreshHighlight: debounce(function() {
|
||||
this.rerender();
|
||||
}, 50).observes('value'),
|
||||
|
||||
|
|
Loading…
Reference in New Issue