Software zum Installieren eines Smart-Mirror Frameworks , zum Nutzen von hochschulrelevanten Informationen, auf einem Raspberry-Pi.
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.

incorrect_url.js 422B

123456789101112131415161718192021222324252627
  1. /* Magic Mirror Test config newsfeed module
  2. *
  3. * MIT Licensed.
  4. */
  5. let config = {
  6. timeFormat: 12,
  7. modules: [
  8. {
  9. module: "newsfeed",
  10. position: "bottom_bar",
  11. config: {
  12. feeds: [
  13. {
  14. title: "Incorrect Url",
  15. url: "this is not a valid url"
  16. }
  17. ]
  18. }
  19. }
  20. ]
  21. };
  22. /*************** DO NOT EDIT THE LINE BELOW ***************/
  23. if (typeof module !== "undefined") {
  24. module.exports = config;
  25. }