diff --git a/source/app/web/statics/app.js b/source/app/web/statics/app.js index eb00a8ca..d8e0e7b6 100644 --- a/source/app/web/statics/app.js +++ b/source/app/web/statics/app.js @@ -59,6 +59,10 @@ preview() { return /-preview$/.test(this.version) }, + //Is in beta mode + beta() { + return /-beta$/.test(this.version) + }, //Rate limit reset rlreset() { const reset = new Date(Math.max(this.requests.graphql.reset, this.requests.rest.reset)) diff --git a/source/app/web/statics/embed/app.js b/source/app/web/statics/embed/app.js index 438467ce..8ec77e34 100644 --- a/source/app/web/statics/embed/app.js +++ b/source/app/web/statics/embed/app.js @@ -263,6 +263,10 @@ preview() { return /-preview$/.test(this.version) }, + //Is in beta mode + beta() { + return /-beta$/.test(this.version) + }, //Rate limit reset rlreset() { const reset = new Date(Math.max(this.requests.graphql.reset, this.requests.rest.reset)) diff --git a/source/app/web/statics/embed/index.html b/source/app/web/statics/embed/index.html index c3cae0e7..194c7bd3 100644 --- a/source/app/web/statics/embed/index.html +++ b/source/app/web/statics/embed/index.html @@ -17,7 +17,7 @@