Multi-edit urlencode #660 ✏
This commit is contained in:
@@ -256,7 +256,7 @@
|
|||||||
columnValue = inputElement.is(':checked') ? 1 : 0;
|
columnValue = inputElement.is(':checked') ? 1 : 0;
|
||||||
} else {
|
} else {
|
||||||
// For other input types (like textboxes), simply retrieve their values
|
// For other input types (like textboxes), simply retrieve their values
|
||||||
columnValue = inputElement.val();
|
columnValue = encodeURIComponent(inputElement.val());
|
||||||
}
|
}
|
||||||
|
|
||||||
var targetColumns = inputElement.attr('data-my-targetColumns');
|
var targetColumns = inputElement.attr('data-my-targetColumns');
|
||||||
|
|||||||
@@ -1,6 +1,9 @@
|
|||||||
## Overview
|
## Overview
|
||||||
|
|
||||||
Plugin to run regular Internet connectivity and IP checks.
|
Plugin to run regular Internet connectivity and IP checks. Change the [dig utility](https://linux.die.net/man/1/dig) arguments if you have issues resolving your Internet IP. Arguments are added at the end of the following command: `dig +short`. Tested with:
|
||||||
|
|
||||||
|
- `@ns1.google.com -t txt o-o.myaddr.l.google.com`
|
||||||
|
- `-4 myip.opendns.com @resolver1.opendns.com`
|
||||||
|
|
||||||
### Usage
|
### Usage
|
||||||
|
|
||||||
|
|||||||
@@ -170,7 +170,7 @@
|
|||||||
"description": [
|
"description": [
|
||||||
{
|
{
|
||||||
"language_code": "en_us",
|
"language_code": "en_us",
|
||||||
"string": "Change the <a href=\"https://linux.die.net/man/1/dig\" target=\"_blank\">dig utility</a> arguments if you have issues resolving your Internet IP. Arguments are added at the end of the following command: <code>dig +short </code>."
|
"string": "Change the <a href=\"https://linux.die.net/man/1/dig\" target=\"_blank\">dig utility</a> arguments if you have issues resolving your Internet IP. Arguments are added at the end of the following command: <code>dig +short </code>. Tested with: <br/> <ul> <li><code>@ns1.google.com -t txt o-o.myaddr.l.google.com</code></li><li> <code>-4 myip.opendns.com @resolver1.opendns.com</code></li></ul>"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"language_code": "es_es",
|
"language_code": "es_es",
|
||||||
|
|||||||
Reference in New Issue
Block a user