- From: Wonsuk Lee <wonsuk11.lee@samsung.com>
- Date: Tue, 23 Aug 2011 15:17:23 +0900
- To: public-device-apis@w3.org
- Message-id: <007801cc615c$524857a0$f6d906e0$%lee@samsung.com>
Hi. All. Here is an example for Feature Permissions. If you have any comment, it¡¯s more than welcome ;) var featureID = "contacts"; function doSomeThing() { // Getting the permission level of a feature var response = navigator.permissionLevel(featureID); if (response === 2) { // USER_ALLOWED = 2 // Do something with USER_ALLOWED permission getContacts(); // Perform an contacts search ... } else // Do something with USER_DENIED permission alert("This web app will be working except your "+featureID+" information"); } navigator.requestPermission(featureID, doSomeThing); Best regards, Wonsuk. ========================================= ÀÌ ¿ø ¼® (Wonsuk, Lee) / Senior Engineer, Ph.D SAMSUNG ELECTRONICS Co., LTD. (ß²àøï³í) Mobile: +82-10-5800-3997 E-mail: <mailto:wonsuk11.lee@samsung.com> wonsuk11.lee@samsung.com <http://www.wonsuk73.com/> http://www.wonsuk73.com/, twitter: @wonsuk73 ----------------------------------------- Inspire the World, Create the Future !!! =========================================
Received on Tuesday, 23 August 2011 06:18:46 UTC