Skip to content

Instantly share code, notes, and snippets.

@konsumer
Created May 13, 2014 08:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save konsumer/a8a18a4c76f16c448cc5 to your computer and use it in GitHub Desktop.
Save konsumer/a8a18a4c76f16c448cc5 to your computer and use it in GitHub Desktop.
angular.module('services')
.service("MusicId", function(){
return [{
"id": "business",
"label": "Business",
"subcats": [{
"label": "Type",
"id": "type",
"value": "hotel",
"options": ["Spa", "Wellness Salon", "Restaurant ", "Hotel", "Gallery", "Café", "Hair Salon", "Fashion Boutique", "Bar", "Other"]
}, {
"label": "Location",
"id": "location",
"options": ["Big City", "Smaller city", "Sea side", "Country side", "Mountains"]
}, {
"label": "Size",
"id": "size",
"options": ["70m² or less", "70m² - 200m²", "200m² or more"]
}]
}, {
"id": "customer",
"label": "Customer",
"subcats": [{
"label": "Dress Style",
"id": "dress_style",
"options": ["Casual", "Smart", "Chic", "Hipster", "Alternative"]
}, {
"label": "Age Group",
"id": "age_group",
"options": ["Under 30", "30 - 49 years old", "50 - 69 years old", "70 and more"]
}, {
"label": "Social Group",
"id": "social_group",
"options": ["Singles", "Couples without kids", "Couples with kids", "Mixed"]
}]
}, {
"id": "atmosphere",
"label": "Atmosphere",
"subcats": [{
"label": "Decoration",
"id": "decoration",
"options": ["Scandinavian", "Industrial", "Royal", "Hippie", "Contemporary Design", "Authentic"]
}, {
"label": "Flavor",
"id": "flavor",
"options": ["The Soundsuit's special", "A touch of Paris", "A touch of NYC", "A touch of Sao Paulo", "A touch of Berlin"]
}, {
"label": "Mood",
"id": "mood",
"options": ["A pinch of groove", "A pinch of relaxing", "A pinch of melancolia", "A pinch of happiness", "Mixed"]
}]
}];
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment