選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 

28 行
294 B

  1. define([
  2. ], function (
  3. ) {
  4. return {
  5. color: 0,
  6. size: 0,
  7. pos: {
  8. x: 0,
  9. y: 0
  10. },
  11. build: function (options) {
  12. var res = $.extend(true, {}, this, {
  13. id: options.id,
  14. pos: {
  15. x: options.x,
  16. y: options.y
  17. }
  18. });
  19. delete res.build;
  20. return res;
  21. }
  22. };
  23. });