mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-05-29 15:15:37 +00:00
(js) Prevent the creation of empty card categories
This commit is contained in:
@@ -76,8 +76,12 @@
|
||||
};
|
||||
|
||||
this.addContactCategory = function(form) {
|
||||
this.preferences.defaults.SOGoContactsCategories.push("");
|
||||
focus('contactCategory_' + (this.preferences.defaults.SOGoContactsCategories.length - 1));
|
||||
var i = _.indexOf(this.preferences.defaults.SOGoContactsCategories, "");
|
||||
if (i < 0) {
|
||||
this.preferences.defaults.SOGoContactsCategories.push("");
|
||||
i = this.preferences.defaults.SOGoContactsCategories.length - 1;
|
||||
}
|
||||
focus('contactCategory_' + i);
|
||||
form.$setDirty();
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user