mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-09-03 14:37:02 +03:00
Bugfix: conflicting File object with native JS
Cleanup: Stores and tooltips
This commit is contained in:
parent
1df2e00862
commit
db0d03db83
43 changed files with 204 additions and 295 deletions
|
|
@ -1,15 +1,7 @@
|
|||
import ko from 'ko';
|
||||
|
||||
class PackageAdminStore {
|
||||
constructor() {
|
||||
this.packages = ko.observableArray();
|
||||
this.packages.loading = ko.observable(false).extend({ debounce: 100 });
|
||||
export const PackageAdminStore = ko.observableArray();
|
||||
|
||||
ko.addObservablesTo(this, {
|
||||
packagesReal: true,
|
||||
packagesMainUpdatable: true
|
||||
});
|
||||
}
|
||||
}
|
||||
PackageAdminStore.real = ko.observable(true);
|
||||
|
||||
export default new PackageAdminStore();
|
||||
PackageAdminStore.loading = ko.observable(false).extend({ debounce: 100 });
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue