Advertisement
Guest User

Untitled

a guest
Feb 22nd, 2017
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.75 KB | None | 0 0
  1. mws.manifests = mws.manifests || {};
  2. (function () {
  3. var CardWidgetManifest = {
  4. assets: [],
  5. layout: {
  6. // every card will have different position besed on its index
  7. // actually we could put here every card's positions, per index of the card
  8. cards: [
  9. {
  10. position: {
  11. x: 40,
  12. y: 248
  13. }
  14. },
  15. {
  16. position: {
  17. x: 458,
  18. y: 248
  19. }
  20. },
  21. {
  22. position: {
  23. x: 876,
  24. y: 248
  25. }
  26. },
  27. {
  28. position: {
  29. x: 40,
  30. y: 439
  31. }
  32. },
  33. {
  34. position: {
  35. x: 458,
  36. y: 439
  37. }
  38. },
  39. {
  40. position: {
  41. x: 876,
  42. y: 439
  43. }
  44. }
  45. ]
  46. }
  47. };
  48. mws.manifests.CardWidgetManifest = CardWidgetManifest;
  49. })();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement