You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
312 B

2 years ago
  1. $.widget('custom.UserList', {
  2. options: {
  3. custom: {},
  4. common: {},
  5. fncallback: null,
  6. btext: {}
  7. },
  8. _create: function () {
  9. var self = this;
  10. },
  11. destroy: function () {
  12. this.element.empty();
  13. $.Widget.prototype.destroy.call(this);
  14. }
  15. });