summaryrefslogtreecommitdiff
path: root/public/assets/javascripts/defaults.js
blob: c779233f02de6e4e5c1470680f99b6914af3322d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
app.defaults = {
	viewHeight: window.viewHeight = 186,
	units: app.units = "ft",
	footResolution: 36,
	meterResolution: 100,
	wallOpacity: 0.95,
	outlineWidth: 2,
	colors: {
    wall: [255,255,255],
    outline: [0,0,0],
    floor: [246,246,246],
    ceiling: [255,255,255],
	},
}

marked.setOptions({
  gfm: true,
  breaks: true,
  sanitize: true,
  smartypants: true,
})