forked from inlineblock/Feeds
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsupport_info.js
28 lines (27 loc) · 1.28 KB
/
support_info.js
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
/*
* The purpose of the Help scene is to give users a consistent place within
* webOS apps to find publisher information, support contact information and
* help resources.
*
* We intend to provide framework-level support for the Help scene in a future
* SDK release. For now, you'll need to manually add the Help scene and hook it
* up to your app's Help menu item.
*
* The contents of the Help scene are determined by the fields provided in this
* file. Required fields are noted below. For most fields, UI labels are
* automatically generated; the Help Resources are the exception to this rule.
*
* Help resources may take various forms (help topics, FAQs, tips, rules,
* tutorials, etc.). As far as the Help scene is concerned, a help resource is
* defined by a UI label describing the resource and either a scene name (if the
* resource is included as a scene in the app itself) or a URL (if the resource
* is to be viewed in the webOS browser). You may provide any number of help
* resources, or none at all. Make sure to replace the icon32x32.png with a 32x32
* version of your app's icon.
*/
SupportInfo = {
resources: [],
publisherURL: 'http://www.deliciousmorsel.com' ,
supportURL: 'http://www.deliciousmorsel.com/contact' ,
supportEmail: 'support@deliciousmorsel.com' ,
};