summaryrefslogtreecommitdiff
path: root/docroot/data/card_tables.js
blob: 6b33ed7e2d2da3641f1dcd1ea5f2829013ead27c (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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
/*
 * Material Experience - Card Tables Data File
 * 
 * EYEMG - Interactive Media Group
 * Created by Mike Crute (mcrute@eyemg.com)
 * Updated by Mike Crute (mcrute@eyemg.com) on 9/26/07
 * 
 * Data file for the card tables. This allows us the flexibility
 * to add or remove tables at a later date. Note that each table
 * id should correspond to a compose card type ID otherwise 
 * no data will be loaded.
 */

[
	{
		tid: 'home',
		name: 'Home',
		color: SME.colors.grey,
		decorate: true
	},
	
	{
		tid: 'inspiration',
		name: 'Inspiration',
		color: SME.colors.brown,
		decorate: true
	},
	
	{
		tid: 'exploration',
		name: 'Exploration',
		color: SME.colors.red,
		decorate: true
	},
	
	{
		tid: 'close-up',
		name: 'Close-Up',
		color: SME.colors.orange,
		decorate: true
	},
	
	{
		tid: 'making_it',
		name: 'Making It',
		color: SME.colors.blue,
		decorate: true
	},

	{
		tid: 'info-samples',
		name: 'Info & Samples',
		color: SME.colors.green,
		decorate: true
	},
	
	{
		tid: 'preview',
		name: 'Preview',
		color: SME.colors.grey,
		decorate: false
	}
]