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.
 
 
 

21 lines
284 B

  1. define([
  2. 'html!./template',
  3. 'css!./styles',
  4. 'js/generator'
  5. ], function (
  6. template,
  7. styles,
  8. generator
  9. ) {
  10. return {
  11. tpl: template,
  12. modal: true,
  13. centered: true,
  14. postRender: function () {
  15. var data = generator.serialize();
  16. this.find('textarea').val(data);
  17. }
  18. }
  19. });