Advertisement
Guest User

Untitled

a guest
Jan 21st, 2019
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.45 KB | None | 0 0
  1. {
  2. module: 'MMM-MyNextBus',
  3. position: 'top_right',
  4. header: 'Rutgers Bus Schedule',
  5. config: {
  6. agency: 'rutgers',
  7. routeList: [
  8. {
  9. routeNo : 'b',
  10. stop : 'busch_a', //Checks to see when bus arrives at Busch Student Center
  11. icon: 'bus',
  12. label: 'B Bus',
  13. },
  14. {
  15. routeNo: 'a',
  16. stop: 'busch_a', //Checks to see when the bus arrives at Busch Student Center
  17. icon: 'bus',
  18. label: 'A Bus',
  19. },
  20. {
  21. routeNo: 'h',
  22. stop: 'busch_a', //Checks to see when the bus arrives at Busch Student Center
  23. icon: 'bus',
  24. label: 'H Bus',
  25. },
  26. {
  27. routeNo : 'wknd1',
  28. stop : 'busch', //Checks to see when bus arrives at Busch Student Center
  29. icon: 'bus',
  30. label: 'Weekend 1 Bus',
  31. },
  32. {
  33. routeNo : 'wknd2',
  34. stop : 'busch', //Checks to see when bus arrives at Busch Student Center
  35. icon: 'bus',
  36. label: 'Weekend 2 Bus',
  37. },
  38. {
  39. routeNo : 's',
  40. stop : 'busch_a', //Checks to see when bus arrives at Busch Student Center
  41. icon: 'bus',
  42. label: 'All Campuses Bus',
  43. },
  44. ],
  45. }
  46. },
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement