60 lines
2.0 KiB
JavaScript
60 lines
2.0 KiB
JavaScript
|
|
var bannerList = {
|
|
"pending": {
|
|
"banner": {
|
|
"image": "https://www.wrenchboard.com/assets/images/apps/banners/kids/banner-start.jpg",
|
|
"icon": "bannerimage.icon",
|
|
"style": "style1",
|
|
"text": "Ready to Start ?",
|
|
"description": "Waiting for you to get started",
|
|
"action": "pending",
|
|
"status": "0"
|
|
}
|
|
},
|
|
"current": {
|
|
"banner": {
|
|
"image": "https://www.wrenchboard.com/assets/images/apps/banners/kids/banner-active.jpg",
|
|
"icon": "bannerimage.icon",
|
|
"style": "style2",
|
|
"text": "Current Activities",
|
|
"description": "Your currently active task",
|
|
"action": "mytask",
|
|
"status": "0"
|
|
}
|
|
},
|
|
"suggested": {
|
|
"banner": {
|
|
"image": "https://www.wrenchboard.com/assets/images/apps/banners/kids/banner-suggested.jpg",
|
|
"icon": "bannerimage.icon",
|
|
"style": "style2",
|
|
"text": "Waiting for Parent",
|
|
"description": "Waiting for parent to get started",
|
|
"action": "parentwaiting",
|
|
"status": "0"
|
|
}
|
|
},
|
|
"recommend": {
|
|
"banner": {
|
|
"image": "https://www.wrenchboard.com/assets/images/apps/banners/kids/banner-recommend.jpg",
|
|
"icon": "bannerimage.icon",
|
|
"style": "style3",
|
|
"text": "Recommend to Parent",
|
|
"description": "Send to parent to approve",
|
|
"action": "familymarket",
|
|
"status": "0"
|
|
}
|
|
},
|
|
"pastdue": {
|
|
"banner": {
|
|
"image": "https://www.wrenchboard.com/assets/images/apps/banners/kids/banner-pastdue.jpg",
|
|
"icon": "bannerimage.icon",
|
|
"style": "style5",
|
|
"text": "Past Due",
|
|
"description": "Ask for more time if past due",
|
|
"action": "pastdue",
|
|
"status": "0"
|
|
}
|
|
}
|
|
};
|
|
|
|
module.exports = bannerList; |