OpenSprinkler › Forums › OpenSprinkler Mobile and Web App › OSPi Interval and Mobile WebApp Station names. › Re: Re: OSPi Interval and Mobile WebApp Station names.
July 14, 2013 at 9:45 pm
#24817
Ray
Keymaster
I see, I forgot to test the apostrophe (single quotation mark). The issue is that since the station name is provided as a javascript array of strings, and I am using apostrophe for defining a string, if you include it in your station name, that will create Javascript error, such as this one:
var snames=;
(Uncaught syntax error…)
the abc,`def’ string has a apostrophe at the end itself, so that will cause ambiguity with the apostrophe used to define a string.
So yes, for now try to avoid using single quotation mark.