|
1 | | -( function ( root, factory ) { |
2 | | - if ( typeof define === 'function' && define.amd ) { |
| 1 | +( function( root, factory ) { |
| 2 | + if ( typeof define === "function" && define.amd ) { |
3 | 3 | define( [ "./chassis" ], factory ); |
4 | | - } else if (typeof exports === 'object') { |
5 | | - module.exports = factory( require('./chassis') ); |
| 4 | + } else if ( typeof exports === "object" ) { |
| 5 | + module.exports = factory( require( "./chassis" ) ); |
6 | 6 | } else { |
7 | 7 | root.chassis = factory( root.chassis ); |
8 | 8 | } |
9 | | -}(this, function ( chassis ) { |
| 9 | +}( this, function( chassis ) { |
10 | 10 |
|
11 | | -var color = "#222"; |
12 | | -var fontSize = "20px"; |
13 | | -var lineHeight = 1.5; |
| 11 | +var color = "#222", |
| 12 | + fontSize = "20px", |
| 13 | + lineHeight = 1.5; |
14 | 14 |
|
15 | 15 | chassis.typography = { |
16 | 16 | normal: { |
@@ -43,15 +43,15 @@ chassis.typography = { |
43 | 43 | }, |
44 | 44 | monospace: { |
45 | 45 | name: "Font Family - Monospace", |
46 | | - value :"\"courier new\", monospace" |
| 46 | + value: "\"courier new\", monospace" |
47 | 47 | }, |
48 | 48 | serif: { |
49 | 49 | name: "Font Family - Serif", |
50 | | - value :"Georgia, \"Times New Roman\", Times, serif" |
| 50 | + value: "Georgia, \"Times New Roman\", Times, serif" |
51 | 51 | }, |
52 | 52 | sans: { |
53 | 53 | name: "Font Family - Sans", |
54 | | - value :"Helvetica, Arial, sans-serif" |
| 54 | + value: "Helvetica, Arial, sans-serif" |
55 | 55 | } |
56 | 56 | }; |
57 | 57 |
|
|
0 commit comments