Skip to content
Snippets Groups Projects
Commit 5fb615ea authored by Regis's avatar Regis
Browse files

same fix on stable for issue title poll on load visibility check

parent b6b486f0
No related branches found
No related tags found
1 merge request!10820same fix on stable for issue title poll on load visibility check
Pipeline #
Loading
Loading
@@ -33,17 +33,6 @@ export default {
};
},
methods: {
fetch() {
this.poll.makeRequest();
Visibility.change(() => {
if (!Visibility.hidden()) {
this.poll.restart();
} else {
this.poll.stop();
}
});
},
renderResponse(res) {
const body = JSON.parse(res.body);
this.triggerAnimation(body);
Loading
Loading
@@ -70,7 +59,17 @@ export default {
},
},
created() {
this.fetch();
if (!Visibility.hidden()) {
this.poll.makeRequest();
}
Visibility.change(() => {
if (!Visibility.hidden()) {
this.poll.restart();
} else {
this.poll.stop();
}
});
},
template: `
<h2 class='title' v-html='title'></h2>
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment