j1-template 2024.0.2 → 2024.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (38) hide show
  1. checksums.yaml +4 -4
  2. data/assets/themes/j1/core/js/template.js +0 -12
  3. data/assets/themes/j1/core/js/template.min.js.map +1 -1
  4. data/assets/themes/j1/modules/iframeResizer/README.md +105 -105
  5. data/assets/themes/j1/modules/lightGallery/js/plugins/lg-video.js +30 -5
  6. data/assets/themes/j1/modules/videojs/assets/material-icons.woff +0 -0
  7. data/assets/themes/j1/modules/videojs/assets/material-icons.woff2 +0 -0
  8. data/assets/themes/j1/modules/videojs/css/plugins/zoom.css +96 -0
  9. data/assets/themes/j1/modules/videojs/css/plugins/zoom.min.css +21 -0
  10. data/assets/themes/j1/modules/videojs/css/themes/city.css +1 -1
  11. data/assets/themes/j1/modules/videojs/css/themes/city.min.css +1 -1
  12. data/assets/themes/j1/modules/videojs/css/themes/fantasy.css +1 -1
  13. data/assets/themes/j1/modules/videojs/css/themes/fantasy.min.css +1 -1
  14. data/assets/themes/j1/modules/videojs/css/themes/forest.css +1 -1
  15. data/assets/themes/j1/modules/videojs/css/themes/forest.min.css +1 -1
  16. data/assets/themes/j1/modules/videojs/css/themes/sea.css +1 -1
  17. data/assets/themes/j1/modules/videojs/css/themes/sea.min.css +1 -1
  18. data/assets/themes/j1/modules/videojs/css/themes/uno.css +16 -18
  19. data/assets/themes/j1/modules/videojs/css/themes/uno.min.css +3 -2
  20. data/assets/themes/j1/modules/videojs/css/{video-js.css → video.css} +9 -7
  21. data/assets/themes/j1/modules/videojs/css/{video-js.min.css → video.min.css} +2 -2
  22. data/assets/themes/j1/modules/videojs/js/plugins/zoom.js +377 -0
  23. data/assets/themes/j1/modules/videojs/js/plugins/zoom.min.js +21 -0
  24. data/assets/themes/j1/modules/videojs/js/video.js +641 -71
  25. data/assets/themes/j1/modules/videojs/js/video.min.js +10 -9
  26. data/lib/j1/version.rb +1 -1
  27. data/lib/starter_web/README.md +5 -5
  28. data/lib/starter_web/_config.yml +1 -1
  29. data/lib/starter_web/_data/modules/gallery.yml +7 -2
  30. data/lib/starter_web/_data/resources.yml +4 -2
  31. data/lib/starter_web/_data/templates/feed.xml +1 -1
  32. data/lib/starter_web/_plugins/asciidoctor/videojs-block.rb +3 -2
  33. data/lib/starter_web/_plugins/index/lunr.rb +3 -1
  34. data/lib/starter_web/assets/videos/gallery/video_james_carpool_caraoke.1920.jpg +0 -0
  35. data/lib/starter_web/package.json +1 -1
  36. data/lib/starter_web/pages/public/tools/previewer/preview_docsearch.adoc +92 -92
  37. data/lib/starter_web/pages/public/tools/previewer/preview_iframer.adoc +106 -106
  38. metadata +11 -4
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d63ed7a43ad87cad87d6198b3557391c4489d81a601b41c10ad634761249663a
4
- data.tar.gz: ea39aac98ac4276cd52be94887793fd708db7cc4801a7aafc41130d11e3d70e5
3
+ metadata.gz: a50df49ac832250d9575da2e374fa170ca81ffaa30248256e4eaa8f8f773956f
4
+ data.tar.gz: d28aa0f2d86798ede42768e36e6821dc61220674f834180594ff0d2c7518e1bd
5
5
  SHA512:
6
- metadata.gz: f615ff95d223346c4a8da7c7bdceaa04b629011b12ccb63ddd9a0cb0e852f4b77af22a36554ef1879e62fc7bfc1242bda781fcefa17a712becfb51a84a32fa70
7
- data.tar.gz: 7ecb7ff7d71ce80e28ffd9fe7fd4d72f4d0611903bde8c652efb15b7e563bd02be36a5a6f23f4984799f1a97285b743591bad2fe2ea5c8477e1a083fa43f30c7
6
+ metadata.gz: 5595bb14151f9f792fe5b373126389293818b0e9df9e8ff910b97a6856a337b7c9e5b46827480564c6a0b3568aed4457315b6821dcb97848dbb7717796140daa
7
+ data.tar.gz: 2e8bfb29b9ce5d93a9c581d421ab793d816ebdf2092966165332af9266c54e1d761244b51b473a67cf52fd1c1be2a1c7db992b488ef6b98b007fc735f45b6893
@@ -87,7 +87,6 @@ function toggle_result_block(result_block) {
87
87
  // result_block.hide();
88
88
  // }, 5000);
89
89
  }
90
-
91
90
  function insert_result_links() {
92
91
  $('.result').each(function (idx, node) {
93
92
  var view_result_link;
@@ -1677,7 +1676,6 @@ module.exports = function asciidoctor(options) {
1677
1676
  var moduleDefaults = {
1678
1677
  dummyOption: false // placeholder
1679
1678
  };
1680
-
1681
1679
  var options = $.extend(moduleDefaults, moduleOptions);
1682
1680
  logText = 'J1 Asciidoctor is being initialized';
1683
1681
  logger.info(logText);
@@ -2795,7 +2793,6 @@ module.exports = function asciidoctor(options) {
2795
2793
  base.wrapperOuter.css("height", ""); //Else remove height attribute
2796
2794
  }
2797
2795
  }
2798
-
2799
2796
  if ($currentimg.get(0) !== undefined) {
2800
2797
  iterations = 0;
2801
2798
  checkImage();
@@ -3144,7 +3141,6 @@ module.exports = function (options) {
3144
3141
  // $('#search-results').html('');
3145
3142
  // });
3146
3143
  },
3147
-
3148
3144
  // END bsFormClearButton
3149
3145
 
3150
3146
  // -------------------------------------------------------------------------
@@ -3653,7 +3649,6 @@ module.exports = function lazyCSS() {
3653
3649
  return this.data('attrchange-status', 'disconnected'); //set a flag that prevents triggering callback onattrchange
3654
3650
  }
3655
3651
  },
3656
-
3657
3652
  remove: function (o) {
3658
3653
  return $.fn.attrchange.extensions['disconnect'].call(this, {
3659
3654
  isPhysicalDisconnect: true
@@ -3699,7 +3694,6 @@ module.exports = function lazyCSS() {
3699
3694
  attributes[o.properties[i]] = comuptedVal; //add the attribute to the orig
3700
3695
  }
3701
3696
  }
3702
-
3703
3697
  if (hasChanges && $(_this).data('attrchange-status') === 'connected') {
3704
3698
  //disconnected logically
3705
3699
  o.callback.call(_this, changes);
@@ -3736,7 +3730,6 @@ module.exports = function lazyCSS() {
3736
3730
  }
3737
3731
  attributes[attr.nodeName] = attr.nodeValue; //add the attribute to the orig
3738
3732
  }
3739
-
3740
3733
  if (hasChanges && $(_this).data('attrchange-status') === 'connected') {
3741
3734
  //disconnected logically
3742
3735
  o.callback.call(_this, changes);
@@ -4155,7 +4148,6 @@ module.exports = function navigator(options) {
4155
4148
  } // END CookieConsent
4156
4149
  }); // End manage events for all quicklinks
4157
4150
  },
4158
-
4159
4151
  // END eventHandler
4160
4152
 
4161
4153
  // -------------------------------------------------------------------------
@@ -4352,7 +4344,6 @@ module.exports = function navigator(options) {
4352
4344
  // e.stopPropagation(); // don't bubble up the event
4353
4345
  // return false;
4354
4346
  });
4355
-
4356
4347
  $('li.close-full-menu').on('click', function (e) {
4357
4348
  e.preventDefault();
4358
4349
  $(getId).addClass($getOut);
@@ -4366,7 +4357,6 @@ module.exports = function navigator(options) {
4366
4357
  });
4367
4358
  }
4368
4359
  },
4369
-
4370
4360
  // end manageDropdownMenu
4371
4361
 
4372
4362
  // -------------------------------------------------------------------------
@@ -4898,7 +4888,6 @@ module.exports = function parseContent(options) {
4898
4888
  // 'ru-RU': 'Google русский',
4899
4889
  // 'zh-CN': 'Google 普通话(中国大陆)',
4900
4890
  };
4901
-
4902
4891
  var voiceLanguageMicrosoftDefault = {
4903
4892
  'sq-AL': 'Microsoft Anila Online (Natural) - Albanian (Albania)',
4904
4893
  'ar-EG': 'Microsoft Salma Online (Natural) - Arabic (Egypt)',
@@ -6143,7 +6132,6 @@ module.exports = function parseContent(options) {
6143
6132
 
6144
6133
  // return this;
6145
6134
  },
6146
-
6147
6135
  // END stop
6148
6136
 
6149
6137
  enabled: function () {