Created
July 29, 2015 15:59
-
-
Save peterdemartini/00cd8e6de4a6206c479e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var meshblu = new Meshblu(config); | |
console.log('starting...'); | |
meshblu.connect(function(response){ | |
var update = { | |
"optionsSchema":{ | |
"type":"object", | |
"properties":{ | |
"allowRemoteStart":{ | |
"type":"boolean", | |
"required":true, | |
"default":false}, | |
"defaultURL":{ | |
"type":"string", | |
"required":true, | |
"default":"http:\/\/www.citrix.com" | |
} | |
} | |
} | |
}; | |
meshblu.update(update); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment