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