link.js 467 B

123456789101112131415161718
  1. define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefined, Backend, Table, Form) {
  2. var Controller = {
  3. index: function () {
  4. },
  5. add: function () {
  6. Controller.api.isdefault();
  7. Controller.api.bindevent();
  8. },
  9. edit: function () {
  10. Controller.api.isdefault();
  11. Controller.api.bindevent();
  12. },
  13. api: {
  14. }
  15. };
  16. return Controller;
  17. });