This commit is contained in:
2015-08-22 12:35:16 +01:00
parent b3581d255c
commit 040c136746
2 changed files with 11 additions and 9 deletions

View File

@@ -19,9 +19,9 @@
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
Pebble.addEventListener('ready', function(e) {
console.log('JS Ready!');
});
// Pebble.addEventListener('ready', function(e) {
// console.log('JS Ready!');
// });
Pebble.addEventListener('showConfiguration', function(e) {
Pebble.openURL('https://pconf.bthlabs.pl/intuiclock/index.html');
@@ -29,7 +29,7 @@ Pebble.addEventListener('showConfiguration', function(e) {
Pebble.addEventListener('webviewclosed', function(e) {
var config_data = JSON.parse(decodeURIComponent(e.response));
console.log('Configuration page returned: ' + JSON.stringify(config_data));
// console.log('Configuration page returned: ' + JSON.stringify(config_data));
var dict = {};
dict['KEY_SECONDS_HAND'] = config_data['seconds_hand'];
@@ -37,8 +37,8 @@ Pebble.addEventListener('webviewclosed', function(e) {
dict['KEY_DATE_FORMAT'] = config_data['date_format'];
Pebble.sendAppMessage(dict, function() {
console.log('Send successful!');
// console.log('Send successful!');
}, function() {
console.log('Send failed!');
// console.log('Send failed!');
});
});