mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-09-02 05:59:21 +03:00
Cleanup constants
This commit is contained in:
parent
87e214aef7
commit
0a95e2c6dc
11 changed files with 40 additions and 104 deletions
|
|
@ -17,8 +17,6 @@ import {
|
|||
pInt
|
||||
} from 'Common/Utils';
|
||||
|
||||
import { CONTACTS_PER_PAGE } from 'Common/Consts';
|
||||
|
||||
import { Selector } from 'Common/Selector';
|
||||
import { exportContactsVcf, exportContactsCsv, uploadContacts } from 'Common/Links';
|
||||
import { i18n, getNotification } from 'Common/Translator';
|
||||
|
|
@ -35,7 +33,8 @@ import { ContactPropertyModel } from 'Model/ContactProperty';
|
|||
import { popup, command, showScreenPopup, hideScreenPopup } from 'Knoin/Knoin';
|
||||
import { AbstractViewNext } from 'Knoin/AbstractViewNext';
|
||||
|
||||
const trim = text => null == text ? "" : (text + "").trim();
|
||||
const trim = text => null == text ? "" : (text + "").trim(),
|
||||
CONTACTS_PER_PAGE = 50;
|
||||
|
||||
@popup({
|
||||
name: 'View/Popup/Contacts',
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue