blob: e4f9aee9f3b28c6f1ca155bfe737720bba6638c6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
/* <copyright>
This file contains proprietary software owned by Motorola Mobility, Inc.<br/>
No rights, expressed or implied, whatsoever to this software are provided by Motorola Mobility, Inc. hereunder.<br/>
(c) Copyright 2011 Motorola Mobility, Inc. All Rights Reserved.
</copyright> */
var Montage = require("montage").Montage,
Converter = require("montage/core/converter/converter").Converter;
exports.ValueUnitsConverter = Montage.create(Converter, {
// convert fahrenheit to celsius (showing our non-metric heritage here)
convert: {
value: function(value) {
// return (parseInt(value, 10) - 32) / 1.8;
// console.log(value);
console.log(value);
return parseInt(value);
}
},
// revert celsius to fahrenheit
revert: {
value: function(value) {
// return (1.8 * parseInt(value, 10)) + 32;
console.log(value);
}
}
});
|