diff --git wordcamp.org/public_html/wp-content/plugins/camptix-attendance/addons/assets/attendance-ui.js wordcamp.org/public_html/wp-content/plugins/camptix-attendance/addons/assets/attendance-ui.js
index 150c37a3b..429548d39 100644
|
|
|
jQuery(document).ready(function($){ |
| 273 | 273 | if ( options && options.controller ) { |
| 274 | 274 | this.controller = options.controller; |
| 275 | 275 | } |
| 276 | | |
| 277 | | this.search = _.debounce( this.search, 500 ); |
| 278 | 276 | }, |
| 279 | 277 | |
| 280 | 278 | /** |
| … |
… |
jQuery(document).ready(function($){ |
| 411 | 409 | this.$list.on( 'scroll', this.scroll ); |
| 412 | 410 | this.$loading = this.$list.find( '.loading' ); |
| 413 | 411 | |
| 414 | | this.on( 'search', this.search, this ); |
| | 412 | this.on( 'search', _.debounce( this.search, 350 ), this ); |
| 415 | 413 | this.on( 'flush', this.flush, this ); |
| 416 | 414 | this.on( 'more:toggle', this.moreToggle, this ); |
| 417 | 415 | this.on( 'filter', this.filter, this ); |