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.

custom-event.js 311B

1234567891011121314
  1. "use strict";
  2. var Event = require("./event");
  3. function CustomEvent(type, customData, target) {
  4. this.initEvent(type, false, false, target);
  5. this.detail = customData.detail || null;
  6. }
  7. CustomEvent.prototype = new Event();
  8. CustomEvent.prototype.constructor = CustomEvent;
  9. module.exports = CustomEvent;