[WIP] - Basic SimpleAppMessage integration for ints.

This commit is contained in:
Keegan
2016-10-25 03:00:43 -07:00
parent 62f0337198
commit 6e6440c9fb
19 changed files with 496 additions and 62 deletions
+19
View File
@@ -0,0 +1,19 @@
'use strict';
var Clay = require('pebble-clay');
var clay = new Clay({
config: [
{
label: 'test',
type: 'color',
messageKey: 'test_int'
},
{
type: 'submit',
defaultValue: 'submit'
}
],
closedCallback: function(response) {
console.log('closedcallback: arguments' + JSON.stringify(arguments));
}
});