Merge branch 'master' of ssh://gitlab.pflaeging.net:1822/stickiebox/redmine_issue_dynamic_edit
This commit is contained in:
commit
3dee39d351
@ -1,35 +1,35 @@
|
|||||||
/*
|
/*
|
||||||
* CONFIGURATION FILE
|
* CONFIGURATION FILE
|
||||||
* More info on https://github.com/Ilogeek/redmine_issue_dynamic_edit
|
* More info on https://github.com/Ilogeek/redmine_issue_dynamic_edit
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* _CONF_FORCE_HTTPS (boolean)
|
* _CONF_FORCE_HTTPS (boolean)
|
||||||
* Will force AJAX call performed by the plugin to be done with https protocol
|
* Will force AJAX call performed by the plugin to be done with https protocol
|
||||||
* Use this value if you encounter some difficulties with "Mixed content" issues
|
* Use this value if you encounter some difficulties with "Mixed content" issues
|
||||||
* Allowed values : false (default), true
|
* Allowed values : false (default), true
|
||||||
*/
|
*/
|
||||||
var _CONF_FORCE_HTTPS = true;
|
var _CONF_FORCE_HTTPS = false;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* _CONF_LISTENER_TYPE (string)
|
* _CONF_LISTENER_TYPE (string)
|
||||||
* Choose which action will trigger the apparition of the edition block
|
* Choose which action will trigger the apparition of the edition block
|
||||||
* Allowed values : click (default), dblclick
|
* Allowed values : click (default), dblclick
|
||||||
*/
|
*/
|
||||||
var _CONF_LISTENER_TYPE = "click";
|
var _CONF_LISTENER_TYPE = "click";
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* _CONF_LISTENER_TARGET (string)
|
* _CONF_LISTENER_TARGET (string)
|
||||||
* Choose which area will trigger the apparition of the edition block
|
* Choose which area will trigger the apparition of the edition block
|
||||||
* "value" will target the whole line, "fa-pencil" will only target the pencil icon
|
* "value" will target the whole line, "fa-pencil" will only target the pencil icon
|
||||||
* Allowed values : value (default), fa-pencil
|
* Allowed values : value (default), fa-pencil
|
||||||
*/
|
*/
|
||||||
var _CONF_LISTENER_TARGET = "value";
|
var _CONF_LISTENER_TARGET = "value";
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* _CONF_EXCLUDED_FIELD_ID (string array)
|
* _CONF_EXCLUDED_FIELD_ID (string array)
|
||||||
* Choose which fields to exclude. They won't have the edit block and pencil
|
* Choose which fields to exclude. They won't have the edit block and pencil
|
||||||
* Custom fields have an unique ID and this ID must be prefixed by "issue_custom_field_values_". Eg : "issue_custom_field_values_4" is an allowed value
|
* Custom fields have an unique ID and this ID must be prefixed by "issue_custom_field_values_". Eg : "issue_custom_field_values_4" is an allowed value
|
||||||
* Allowed values : array of any ID selector (css). Eg : ["statusListDropdown", "StartDateInput", "TitleInput", "issue_custom_field_values_4"]
|
* Allowed values : array of any ID selector (css). Eg : ["statusListDropdown", "StartDateInput", "TitleInput", "issue_custom_field_values_4"]
|
||||||
*/
|
*/
|
||||||
var _CONF_EXCLUDED_FIELD_ID = [];
|
var _CONF_EXCLUDED_FIELD_ID = [];
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user