mirror of
https://github.com/discourse/discourse.git
synced 2025-09-06 10:50:21 +08:00
Add ES6 support to more files
This commit is contained in:
parent
766903c430
commit
e2e3e7c0e0
78 changed files with 419 additions and 387 deletions
|
@ -1,3 +1,4 @@
|
|||
import debounce from 'discourse/lib/debounce';
|
||||
import { outputExportResult } from 'discourse/lib/export-result';
|
||||
import { exportEntity } from 'discourse/lib/export-csv';
|
||||
|
||||
|
@ -6,7 +7,7 @@ export default Ember.ArrayController.extend({
|
|||
itemController: 'admin-log-screened-ip-address',
|
||||
filter: null,
|
||||
|
||||
show: Discourse.debounce(function() {
|
||||
show: debounce(function() {
|
||||
var self = this;
|
||||
self.set('loading', true);
|
||||
Discourse.ScreenedIpAddress.findAll(this.get("filter")).then(function(result) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue