tshirt.js 780 Bytes
define(["app"],function(app){"use strict";app.factory("$t_shirt",function($http,$rootScope){var DATA=[{info:{name:"",description:"",price:"",gender:"",image:""},place_design:{},color:[{name:"color: 2E GRAY",code:"#d0d0cd",img:{front:"images/t-shirt/1/gray/front.png",back:"images/t-shirt/1/gray/back.png"}},{name:"color: 00 BLACK",code:"#23282e",img:{front:"images/t-shirt/1/black/front.png",back:"images/t-shirt/1/black/back.png"}},{name:"color: 3B ORANGE",code:"#e2583b",img:{front:"images/t-shirt/1/orange/front.png",back:"images/t-shirt/1/orange/back.png"}}]}];return{getTShirtColor:function(key){return"undefined"==typeof DATA[key]?[]:DATA[key].color},getAll:function(){return DATA},getList:function(category){return"undefined"==typeof DATA[category]?[]:DATA[category]}}})});