@innovastudio/contentbox 1.5.24 → 1.5.25

Sign up to get free protection for your applications and to get access to all the features.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@innovastudio/contentbox",
3
3
  "type": "module",
4
- "version": "1.5.24",
4
+ "version": "1.5.25",
5
5
  "description": "",
6
6
  "main": "public/contentbox/contentbox.esm.js",
7
7
  "files": [
@@ -451,15 +451,15 @@ const prepareSvgIcons$1 = builder => {
451
451
  dom$o.appendHtml(builderStuff, html);
452
452
  };
453
453
 
454
- let langFile = false;
454
+ function out(s) {
455
+ let langFile = false;
455
456
 
456
- if (typeof window !== 'undefined') {
457
- if (typeof window._txt !== 'undefined') {
458
- langFile = true;
457
+ if (typeof window !== 'undefined') {
458
+ if (typeof window._txt !== 'undefined') {
459
+ langFile = true;
460
+ }
459
461
  }
460
- }
461
462
 
462
- function out(s) {
463
463
  if (langFile) {
464
464
  var result = window._txt[s];
465
465
  if (result) return result;else return s;