mirror of
https://github.com/YunoHost-Apps/dolibarr_ynh.git
synced 2024-09-03 18:35:53 +02:00
9 lines
No EOL
268 B
JavaScript
9 lines
No EOL
268 B
JavaScript
/* Create an inline datepicker which leverages the
|
|
jQuery UI autocomplete
|
|
*/
|
|
$.editable.addInputType('autocomplete', {
|
|
element : $.editable.types.text.element,
|
|
plugin : function(settings, original) {
|
|
$('input', this).autocomplete(settings.autocomplete);
|
|
}
|
|
}); |