[BS5] add whats new modal after update

This commit is contained in:
FreddleSpl0it
2022-07-08 15:47:21 +02:00
parent d3cd21956a
commit 8987ebca36
8 changed files with 81 additions and 7 deletions

File diff suppressed because one or more lines are too long

View File

@@ -346,6 +346,6 @@ $(document).ready(function() {
});
// http://stackoverflow.com/questions/24816/escaping-html-strings-with-jquery
// https://stackoverflow.com/questions/24816/escaping-html-strings-with-jquery
function escapeHtml(n){var entityMap={"&":"&amp;","<":"&lt;",">":"&gt;",'"':"&quot;","'":"&#39;","/":"&#x2F;","`":"&#x60;","=":"&#x3D;"}; return String(n).replace(/[&<>"'`=\/]/g,function(n){return entityMap[n]})}
function unescapeHtml(t){var n={"&amp;":"&","&lt;":"<","&gt;":">","&quot;":'"',"&#39;":"'","&#x2F;":"/","&#x60;":"`","&#x3D;":"="};return String(t).replace(/&amp;|&lt;|&gt;|&quot;|&#39;|&#x2F|&#x60|&#x3D;/g,function(t){return n[t]})}