Skip to content

Commit

Permalink
prepare for release
Browse files Browse the repository at this point in the history
  • Loading branch information
chughts committed Jun 20, 2017
1 parent a00bceb commit 32f108c
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 6 deletions.
2 changes: 1 addition & 1 deletion services/discovery/discovery-utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ DiscoveryUtils.prototype = {
params.query = config.querynlp;
params.nlp_query = config.nlp_query;
} else {
params = buildStructuredQuery(msg, config, params);
params = this.buildStructuredQuery(msg, config, params);
}
return params;
},
Expand Down
11 changes: 7 additions & 4 deletions services/discovery/v1-query-builder.html
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@
});

$('input#node-input-nlp_query').change(function () {
var checked = $('input#node-input-nlp_query').prop('checked')
var checked = $('input#node-input-nlp_query').prop('checked');
if (checked) {
$('#node-input-querynlp').parent().show();
$('#node-input-query1').parent().hide();
Expand Down Expand Up @@ -413,9 +413,12 @@
// three query switch lists can be shown.
disQB.showSchemas = function () {
if (disQB.schemas && disQB.schemaCheck()) {
$('select#node-input-query1').parent().show();
$('select#node-input-query2').parent().show();
$('select#node-input-query3').parent().show();
var checked = $('input#node-input-nlp_query').prop('checked');
if (!checked) {
$('select#node-input-query1').parent().show();
$('select#node-input-query2').parent().show();
$('select#node-input-query3').parent().show();
}
disQB.populateSchemas();
}
}
Expand Down
2 changes: 1 addition & 1 deletion services/language_translator_identify/v2.html
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
</script>

<script type="text/x-red" data-help-name="watson-language-translator-identify">
<p>Packaged in with release 0.5.9 of node-red-node-watson</p>
<p>Packaged in with release 0.5.11 of node-red-node-watson</p>
<p>The Watson Language Translator service can be used to identify languages used in a text input. <p>
<p>Node input : </p>
<ul>
Expand Down

0 comments on commit 32f108c

Please sign in to comment.