componentDidMount () {
   this.sortTable = tableSort(this.table)
   return this.sortTable
 }
示例#2
0
文件: user-mod.js 项目: ornicar/lila
 $zone.find('#mz_others table').each(function() {
   tablesort(this);
 });
示例#3
0
module.exports = function () {

  var table = $('#transactions table')[0]
  tablesort(table)

}
示例#4
0
 componentDidMount (event) {
   return tableSort(this.table)
 }