|
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:
323 bytes
|
| Line | |
|---|
| 1 | 'use strict';
|
|---|
| 2 |
|
|---|
| 3 | var margin = require('./margin.js');
|
|---|
| 4 | var parsers = require('../parsers.js');
|
|---|
| 5 |
|
|---|
| 6 | module.exports.definition = {
|
|---|
| 7 | set: parsers.subImplicitSetter('margin', 'top', margin.isValid, margin.parser),
|
|---|
| 8 | get: function() {
|
|---|
| 9 | return this.getPropertyValue('margin-top');
|
|---|
| 10 | },
|
|---|
| 11 | enumerable: true,
|
|---|
| 12 | configurable: true,
|
|---|
| 13 | };
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.