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