|
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:
522 bytes
|
| Rev | Line | |
|---|
| [9af201e] | 1 | 'use strict';
|
|---|
| 2 |
|
|---|
| 3 | var shorthandSetter = require('../parsers').shorthandSetter;
|
|---|
| 4 | var shorthandGetter = require('../parsers').shorthandGetter;
|
|---|
| 5 |
|
|---|
| 6 | var shorthand_for = {
|
|---|
| 7 | 'border-bottom-width': require('./borderBottomWidth'),
|
|---|
| 8 | 'border-bottom-style': require('./borderBottomStyle'),
|
|---|
| 9 | 'border-bottom-color': require('./borderBottomColor'),
|
|---|
| 10 | };
|
|---|
| 11 |
|
|---|
| 12 | module.exports.definition = {
|
|---|
| 13 | set: shorthandSetter('border-bottom', shorthand_for),
|
|---|
| 14 | get: shorthandGetter('border-bottom', shorthand_for),
|
|---|
| 15 | enumerable: true,
|
|---|
| 16 | configurable: true,
|
|---|
| 17 | };
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.