source: frontend/node_modules/cssstyle/lib/properties/paddingRight.js@ 9af201e

Last change on this file since 9af201e was 9af201e, checked in by MBK <marija.karapandzova@…>, 11 days ago

Fix frontend appearance

  • Property mode set to 100644
File size: 333 bytes
Line 
1'use strict';
2
3var padding = require('./padding.js');
4var parsers = require('../parsers.js');
5
6module.exports.definition = {
7 set: parsers.subImplicitSetter('padding', 'right', padding.isValid, padding.parser),
8 get: function() {
9 return this.getPropertyValue('padding-right');
10 },
11 enumerable: true,
12 configurable: true,
13};
Note: See TracBrowser for help on using the repository browser.