Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Jérome Perrin
gitlab-ce
Commits
cd111ffa
Commit
cd111ffa
authored
Dec 02, 2016
by
Regis
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
anon callbacks since intervals removed in function prior - [ci skip]
parent
d6061b73
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
5 deletions
+4
-5
app/assets/javascripts/vue_pipelines_index/store.js.es6
app/assets/javascripts/vue_pipelines_index/store.js.es6
+4
-5
No files found.
app/assets/javascripts/vue_pipelines_index/store.js.es6
View file @
cd111ffa
...
...
@@ -45,7 +45,6 @@
const startTimeLoops = () => {
this.timeLoopInterval = setInterval(() => {
console.log('TIME LOOP');
this.$children
.filter(e => e.$options._componentTag === 'time-ago')
.forEach(e => e.changeTime());
...
...
@@ -64,10 +63,10 @@
const removeAll = () => {
removeTimeIntervals();
window.removeEventListener('beforeunload',
removeTimeIntervals
);
window.removeEventListener('focus',
startIntervalLoops
);
window.removeEventListener('blur',
removeTimeIntervals
);
document.removeEventListener('page:fetch',
removeTimeIntervals
);
window.removeEventListener('beforeunload',
() => {}
);
window.removeEventListener('focus',
() => {}
);
window.removeEventListener('blur',
() => {}
);
document.removeEventListener('page:fetch',
() => {}
);
};
window.addEventListener('beforeunload', removeTimeIntervals);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment