forked from openlp/openlp
Fix support issue 354, Web Remote causes a stacktrace when sending an Alert message.
bzr-revno: 1855
This commit is contained in:
commit
e59d5b014b
@ -208,7 +208,9 @@ window.OpenLP = {
|
|||||||
},
|
},
|
||||||
showAlert: function (event) {
|
showAlert: function (event) {
|
||||||
event.preventDefault();
|
event.preventDefault();
|
||||||
var text = "{\"request\": {\"text\": " + $("#alert-text").val() + "}}";
|
var text = "{\"request\": {\"text\": \"" +
|
||||||
|
$("#alert-text").val().replace(/\\/g, "\\\\").replace(/"/g, "\\\"") +
|
||||||
|
"\"}}";
|
||||||
$.getJSON(
|
$.getJSON(
|
||||||
"/api/alert",
|
"/api/alert",
|
||||||
{"data": text},
|
{"data": text},
|
||||||
@ -219,7 +221,9 @@ window.OpenLP = {
|
|||||||
},
|
},
|
||||||
search: function (event) {
|
search: function (event) {
|
||||||
event.preventDefault();
|
event.preventDefault();
|
||||||
var text = "{\"request\": {\"text\": \"" + $("#search-text").val() + "\"}}";
|
var text = "{\"request\": {\"text\": \"" +
|
||||||
|
$("#search-text").val().replace(/\\/g, "\\\\").replace(/"/g, "\\\"") +
|
||||||
|
"\"}}";
|
||||||
$.getJSON(
|
$.getJSON(
|
||||||
"/api/" + $("#search-plugin").val() + "/search",
|
"/api/" + $("#search-plugin").val() + "/search",
|
||||||
{"data": text},
|
{"data": text},
|
||||||
|
Loading…
Reference in New Issue
Block a user