mirror of
https://github.com/Combodo/iTop.git
synced 2026-02-13 07:24:13 +01:00
* N°7157 - Allow users to unsubscribe from notification channels * Fix type hinting * Add missing dict entries * Allows to subscribe/unsubscribe from notifications individually * Refactor NotificationsService to singleton pattern * Refactor NotificationsRepository to singleton pattern and rename methods to a more functional naming * Add PHPDoc and type hints * Dump autoloaders * Replace modals with toasts * Add dict entry --------- Co-authored-by: Molkobain <lajarige.guillaume@free.fr>
26 lines
566 B
JavaScript
26 lines
566 B
JavaScript
Selectize.define("combodo_min_items", function (aOptions) {
|
|
|
|
// Selectize instance
|
|
let oSelf = this;
|
|
|
|
// Plugin options
|
|
aOptions = $.extend({
|
|
minItems: 0,
|
|
errorMessage: 'Minimum ' + aOptions.minItems + ' item(s) required.'
|
|
},
|
|
aOptions
|
|
);
|
|
|
|
// Override removeItem function
|
|
oSelf.removeItem = (function () {
|
|
let oOriginal = oSelf.removeItem;
|
|
return function () {
|
|
if(oSelf.items.length <= aOptions.minItems) {
|
|
CombodoModal.OpenErrorModal(aOptions.errorMessage, []);
|
|
return;
|
|
}
|
|
return oOriginal.apply(this, arguments);
|
|
}
|
|
})();
|
|
|
|
}); |