source: frontend/node_modules/cssstyle/lib/properties/borderLeftWidth.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: 349 bytes
Line 
1'use strict';
2
3var isValid = (module.exports.isValid = require('./borderWidth').isValid);
4
5module.exports.definition = {
6 set: function(v) {
7 if (isValid(v)) {
8 this._setProperty('border-left-width', v);
9 }
10 },
11 get: function() {
12 return this.getPropertyValue('border-left-width');
13 },
14 enumerable: true,
15 configurable: true,
16};
Note: See TracBrowser for help on using the repository browser.