source: frontend/node_modules/cssstyle/lib/properties/bottom.js

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

Fix frontend appearance

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