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