Skip to content

Commit

Permalink
added tag 'release-beta-2024-04-23-15.28/+0200' for beta version in f…
Browse files Browse the repository at this point in the history
…older beta.
  • Loading branch information
klues committed Apr 23, 2024
1 parent 71177db commit 9893b5b
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion latest/app/build/asterics-grid.bundle.js

Large diffs are not rendered by default.

5 changes: 4 additions & 1 deletion latest/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -105,9 +105,12 @@ <h2 class="hide-mobile">{{ $t('users') }}</h2>
</div>
</div>

<!-- browser compatibility checks -->
<!-- browser compatibility checks and polyfills -->
<script type="text/javascript" src='app/lib/modernizr-custom.js'></script>
<script type="text/javascript">
// polyfill for String.replaceAll, https://stackoverflow.com/questions/1144783/how-do-i-replace-all-occurrences-of-a-string-in-javascript
if(!String.prototype.replaceAll){Object.defineProperty(String.prototype,'replaceAll',{configurable:!0,writable:!0,enumerable:!1,value:function(search,replace){return this.replace(Object.prototype.toString.call(search)==='[object RegExp]'?search.global?search:RegExp(search.source,/\/([a-z]*)$/.exec(search.toString())[1]+'g'):RegExp(String(search).replace(/[.^$*+?()[{|\\]/g,"\\$&"),"g"),replace)}})}

Modernizr.on('promises', function (result) {
checkResult(result, 'Promises');
});
Expand Down
2 changes: 1 addition & 1 deletion latest/serviceWorker.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ self.addEventListener('install', (event) => {
self.addEventListener('activate', event => {
clients.claim();
sendToClients({type: constants.SW_EVENT_ACTIVATED, activated: true});
console.log('Service Worker active! Version: https://github.com/asterics/AsTeRICS-Grid/releases/tag/release-beta-2024-04-23-13.51/+0200');
console.log('Service Worker active! Version: https://github.com/asterics/AsTeRICS-Grid/releases/tag/release-beta-2024-04-23-15.28/+0200');
});

self.addEventListener('message', (event) => {
Expand Down

0 comments on commit 9893b5b

Please sign in to comment.