pushmessage.js 306 B

1234567891011121314
  1. define(['form'], function (Form) {
  2. var Controller = {
  3. index: function () {
  4. Controller.api.bindevent();
  5. },
  6. api: {
  7. bindevent: function () {
  8. Form.api.bindevent($("form[role=form]"));
  9. }
  10. }
  11. };
  12. return Controller;
  13. });