diff options
author | Filipa Lacerda <lacerda.filipa@gmail.com> | 2017-02-08 17:33:37 +0000 |
---|---|---|
committer | Filipa Lacerda <lacerda.filipa@gmail.com> | 2017-02-08 17:33:37 +0000 |
commit | e0d93a5a1f8014a3bf4e400d6da9c7f90ee19e7d (patch) | |
tree | 28b285c965bed76e733f70f46b22b92da15bb802 /app | |
parent | ebf168d023746c3c458d355c3e6db2c54974a9fa (diff) | |
parent | 9a074366e5aad8c7dc93ecb974609698c7e60e18 (diff) | |
download | gitlab-ce-e0d93a5a1f8014a3bf4e400d6da9c7f90ee19e7d.tar.gz |
Merge branch 'backport-ee-build-fixes' into 'master'
Backport fixes for pipelines_store frontend specs
Closes #27871
See merge request !9067
Diffstat (limited to 'app')
-rw-r--r-- | app/assets/javascripts/commit/pipelines/pipelines_store.js.es6 | 2 | ||||
-rw-r--r-- | app/assets/javascripts/vue_realtime_listener/index.js.es6 | 11 |
2 files changed, 12 insertions, 1 deletions
diff --git a/app/assets/javascripts/commit/pipelines/pipelines_store.js.es6 b/app/assets/javascripts/commit/pipelines/pipelines_store.js.es6 index 11a3449d99a..f1b41911b73 100644 --- a/app/assets/javascripts/commit/pipelines/pipelines_store.js.es6 +++ b/app/assets/javascripts/commit/pipelines/pipelines_store.js.es6 @@ -26,7 +26,7 @@ class PipelinesStore { */ startTimeAgoLoops() { const startTimeLoops = () => { - this.timeLoopInterval = setInterval(function timeloopInterval() { + this.timeLoopInterval = setInterval(() => { this.$children[0].$children.reduce((acc, component) => { const timeAgoComponent = component.$children.filter(el => el.$options._componentTag === 'time-ago')[0]; acc.push(timeAgoComponent); diff --git a/app/assets/javascripts/vue_realtime_listener/index.js.es6 b/app/assets/javascripts/vue_realtime_listener/index.js.es6 index 95564152cce..30f6680a673 100644 --- a/app/assets/javascripts/vue_realtime_listener/index.js.es6 +++ b/app/assets/javascripts/vue_realtime_listener/index.js.es6 @@ -14,5 +14,16 @@ window.addEventListener('focus', startIntervals); window.addEventListener('blur', removeIntervals); document.addEventListener('beforeunload', removeAll); + + // add removeAll methods to stack + const stack = gl.VueRealtimeListener.reset; + gl.VueRealtimeListener.reset = () => { + gl.VueRealtimeListener.reset = stack; + removeAll(); + stack(); + }; }; + + // remove all event listeners and intervals + gl.VueRealtimeListener.reset = () => undefined; // noop })(window.gl || (window.gl = {})); |