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.

marginRight.js 327B

12345678910111213
  1. 'use strict';
  2. var margin = require('./margin.js');
  3. var parsers = require('../parsers.js');
  4. module.exports.definition = {
  5. set: parsers.subImplicitSetter('margin', 'right', margin.isValid, margin.parser),
  6. get: function() {
  7. return this.getPropertyValue('margin-right');
  8. },
  9. enumerable: true,
  10. configurable: true,
  11. };