diff options
author | Hanspeter Portner <dev@open-music-kontrollers.ch> | 2016-03-18 09:39:25 +0100 |
---|---|---|
committer | Hanspeter Portner <dev@open-music-kontrollers.ch> | 2016-03-18 09:39:25 +0100 |
commit | 24eab9c277a2e904a98130579b5be209061a81c3 (patch) | |
tree | cf1da703cb9783c334353aaa730febdc5362374a | |
parent | c8835596c1ae709055bcf543c825a21b78da2f20 (diff) | |
download | moony.lv2-0.2.1.tar.xz (sig) |
pass value===0 for ui:floatProtocol through web_ui.0.2.1
-rw-r--r-- | web_ui/moony.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/web_ui/moony.js b/web_ui/moony.js index cfdd04d..a43bfd3 100644 --- a/web_ui/moony.js +++ b/web_ui/moony.js @@ -619,7 +619,7 @@ function lv2_success(data) { var prot = data[LV2.UI.protocol]; var value = data[RDF.value]; - if(symbol && prot && value) + if(symbol && prot) { var callback = lv2_read[prot]; if(callback) |