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.

borderTop.js 498B

1234567891011121314151617
  1. 'use strict';
  2. var shorthandSetter = require('../parsers').shorthandSetter;
  3. var shorthandGetter = require('../parsers').shorthandGetter;
  4. var shorthand_for = {
  5. 'border-top-width': require('./borderTopWidth'),
  6. 'border-top-style': require('./borderTopStyle'),
  7. 'border-top-color': require('./borderTopColor'),
  8. };
  9. module.exports.definition = {
  10. set: shorthandSetter('border-top', shorthand_for),
  11. get: shorthandGetter('border-top', shorthand_for),
  12. enumerable: true,
  13. configurable: true,
  14. };