summaryrefslogtreecommitdiffstats
path: root/web/react/utils/delayed_action.jsx
diff options
context:
space:
mode:
Diffstat (limited to 'web/react/utils/delayed_action.jsx')
-rw-r--r--web/react/utils/delayed_action.jsx27
1 files changed, 0 insertions, 27 deletions
diff --git a/web/react/utils/delayed_action.jsx b/web/react/utils/delayed_action.jsx
deleted file mode 100644
index 4f6239ad0..000000000
--- a/web/react/utils/delayed_action.jsx
+++ /dev/null
@@ -1,27 +0,0 @@
-// Copyright (c) 2015 Mattermost, Inc. All Rights Reserved.
-// See License.txt for license information.
-
-export default class DelayedAction {
- constructor(action) {
- this.action = action;
-
- this.timer = -1;
-
- // bind fire since it doesn't get passed the correct this value with setTimeout
- this.fire = this.fire.bind(this);
- }
-
- fire() {
- this.action();
-
- this.timer = -1;
- }
-
- fireAfter(timeout) {
- if (this.timer >= 0) {
- window.clearTimeout(this.timer);
- }
-
- this.timer = window.setTimeout(this.fire, timeout);
- }
-}