mirror of
https://github.com/the-djmaze/snappymail.git
synced 2025-01-06 23:07:56 +08:00
10 lines
222 B
JavaScript
10 lines
222 B
JavaScript
import 'External/ko';
|
|
import ko from 'ko';
|
|
import { SaveSettingsStep } from 'Common/Enums';
|
|
|
|
// functions
|
|
|
|
ko.observable.fn.idleTrigger = function() {
|
|
this.trigger = ko.observable(SaveSettingsStep.Idle);
|
|
return this;
|
|
};
|