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

window.marked && marked.setOptions({
  sanitize: true,
  smartypants: true,
})