//FIXME: Move to separate service once will switch to API call angular.module('SideMenu').factory('SideMenuService', function() { function getMenuList(){ return [ { "group" : { "id" : 2, "priority" : 0, "name" : "Booklets", "url" : "Booklets", "tags" : [ ] }, "products" : { "2" : { "menuTitle" : "(Economy) Self-Cover Gloss Booklet", "link" : "2" } }, "name" : "Booklets" }, { "group" : { "id" : 1, "priority" : 0, "name" : "Brochures", "url" : "Brochures", "tags" : [ ] }, "products" : { "15" : { "menuTitle" : "Broshures - Standard Size ", "link" : "15" } }, "name" : "Brochures" }, { "group" : { "id" : 48, "priority" : 0, "name" : "CUSTOM QUOTE products", "url" : "CUSTOM QUOTE products", "tags" : [ "hide-quantity hide-media hide-printing hide-project-title hide-size" ] }, "products" : { "47" : { "menuTitle" : "Business Cards", "link" : "47" } }, "name" : "CUSTOM QUOTE products" }, { "group" : { "id" : 4, "priority" : 0, "name" : "Flyers", "url" : "Flyers", "tags" : [ ] }, "products" : { "7" : { "menuTitle" : "(Premium) 100# Gloss Text", "link" : "7" } }, "name" : "Flyers" }, { "group" : { "id" : 53, "priority" : 0, "name" : "Signage and Trade Shows", "url" : "signage-and-trade-shows", "tags" : [ "hide-printing hide-project-title hide-size hide-media" ] }, "products" : { "102" : { "menuTitle" : "Dye Sublimated Canopies", "link" : "102" }, "103" : { "menuTitle" : "Screen Printed Canopies", "link" : "103" }, "104" : { "menuTitle" : "Canopy Walls", "link" : "104" }, "105" : { "menuTitle" : "Canopy Side Skirts", "link" : "105" }, "106" : { "menuTitle" : "Canopy Kits", "link" : "106" }, "107" : { "menuTitle" : "Loose Table Throws", "link" : "107" }, "108" : { "menuTitle" : "Fitted Table Covers", "link" : "108" }, "109" : { "menuTitle" : "Stretch Fit Table Covers", "link" : "109" }, "110" : { "menuTitle" : "Convertible Table Throw", "link" : "110" }, "111" : { "menuTitle" : "Econ 3-Sided Table Covers", "link" : "111" }, "112" : { "menuTitle" : "Blank Loose Throws", "link" : "112" }, "113" : { "menuTitle" : "Table Runners", "link" : "113" }, "114" : { "menuTitle" : "Feather Flags", "link" : "114" }, "115" : { "menuTitle" : "Tear Drop Flags", "link" : "115" }, "116" : { "menuTitle" : "Flagpole Banner", "link" : "116" }, "117" : { "menuTitle" : "Flag Banners", "link" : "117" }, "118" : { "menuTitle" : "Pole Flags", "link" : "118" }, "119" : { "menuTitle" : "Economy Retractable", "link" : "119" }, "120" : { "menuTitle" : "Eco-Plus Retractable", "link" : "120" }, "121" : { "menuTitle" : "Platinum Retractable", "link" : "121" }, "122" : { "menuTitle" : "Premier Retractable", "link" : "122" }, "123" : { "menuTitle" : "Adjustable Banner Stand", "link" : "123" }, "124" : { "menuTitle" : "Tabletop Retractable Banner", "link" : "124" }, "125" : { "menuTitle" : "Indoor X-Banner Stand", "link" : "125" }, "126" : { "menuTitle" : "Premier Indoor X-Banner Stand", "link" : "126" }, "127" : { "menuTitle" : "Outdoor X-Banner Stand", "link" : "127" }, "128" : { "menuTitle" : "Premier Tube Straight Displays", "link" : "128" }, "129" : { "menuTitle" : "Premier Tube Curved Displays", "link" : "129" }, "130" : { "menuTitle" : "Premier Tube Stand", "link" : "130" }, "131" : { "menuTitle" : "Premier Pop Up Displays", "link" : "131" }, "132" : { "menuTitle" : "Tabletop X-Banner", "link" : "132" }, "133" : { "menuTitle" : "Pop-Out Displays", "link" : "133" }, "134" : { "menuTitle" : "Eclipse Display", "link" : "134" }, "135" : { "menuTitle" : "Canvas Prints", "link" : "135" }, "136" : { "menuTitle" : "Market Umbrellas", "link" : "136" }, "137" : { "menuTitle" : "Canopy Hardware", "link" : "137" }, "138" : { "menuTitle" : "Vinyl Banners", "link" : "138" }, "139" : { "menuTitle" : "Premier Wave Display", "link" : "139" }, "140" : { "menuTitle" : "Premier Pillar Display", "link" : "140" }, "141" : { "menuTitle" : "Signicade A-Frame", "link" : "141" }, "142" : { "menuTitle" : "Premier A-Frame", "link" : "142" } }, "name" : "Signage and Trade Shows" } ]; } return { getMenuList : getMenuList }; });