We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi again,
I am using your plugin with a .NET Script Service. These expect their parameters as a stringified JSON object, like this:
data: JSON.stringify({ 'pattern': '{{{q}}}' })
While the request itself works fine that way, the plugin fails to replace {{{q}}} in there. I worked around that like this:
if (typeof (this.options.data) == 'string') this.options.data = this.options.data.replace('{{{q}}}', this.plugin.query); else this.plugin.replaceValue(this.options.data, '{{{q}}}', this.plugin.query);
I would be very thankful if you would integrate this possibility into your replaceValue() function.
Thank you,
Christophe
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi again,
I am using your plugin with a .NET Script Service. These expect their parameters as a stringified JSON object, like this:
While the request itself works fine that way, the plugin fails to replace {{{q}}} in there. I worked around that like this:
I would be very thankful if you would integrate this possibility into your replaceValue() function.
Thank you,
Christophe
The text was updated successfully, but these errors were encountered: