OTRS API Reference JavaScript

Source: Core.Agent.Admin.Signature.js

  1. // --
  2. // Copyright (C) 2001-2020 OTRS AG, https://otrs.com/
  3. // --
  4. // This software comes with ABSOLUTELY NO WARRANTY. For details, see
  5. // the enclosed file COPYING for license information (GPL). If you
  6. // did not receive this file, see https://www.gnu.org/licenses/gpl-3.0.txt.
  7. // --
  8. "use strict";
  9. var Core = Core || {};
  10. Core.Agent = Core.Agent || {};
  11. Core.Agent.Admin = Core.Agent.Admin || {};
  12. /**
  13. * @namespace Core.Agent.Admin.Signature
  14. * @memberof Core.Agent.Admin
  15. * @author OTRS AG
  16. * @description
  17. * This namespace contains the special function for AdminSignature module.
  18. */
  19. Core.Agent.Admin.Signature = (function (TargetNS) {
  20. /*
  21. * @name Init
  22. * @memberof Core.Agent.Admin.Signature
  23. * @function
  24. * @description
  25. * This function initializes table filter.
  26. */
  27. TargetNS.Init = function () {
  28. Core.UI.Table.InitTableFilter($('#FilterSignatures'), $('#Signatures'));
  29. };
  30. Core.Init.RegisterNamespace(TargetNS, 'APP_MODULE');
  31. return TargetNS;
  32. }(Core.Agent.Admin.Signature || {}));

^ Use Elevator