j1-template 2021.1.3 → 2021.1.4
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.
- checksums.yaml +4 -4
- data/assets/themes/j1/adapter/js/navigator.js +9 -6
- data/assets/themes/j1/modules/iframeResizer/examples/frame.absolute.html +2 -4
- data/assets/themes/j1/modules/iframeResizer/examples/frame.content.html +3 -4
- data/assets/themes/j1/modules/iframeResizer/examples/frame.hover.html +2 -4
- data/assets/themes/j1/modules/iframeResizer/examples/frame.nested.html +2 -4
- data/assets/themes/j1/modules/iframeResizer/examples/frame.textarea.html +2 -4
- data/assets/themes/j1/modules/iframeResizer/examples/frame.tolerance.html +2 -4
- data/assets/themes/j1/modules/iframeResizer/examples/index.html +0 -2
- data/assets/themes/j1/modules/iframeResizer/examples/two.html +2 -4
- data/lib/j1/version.rb +1 -1
- data/lib/starter_web/Gemfile +1 -1
- data/lib/starter_web/_config.yml +1 -2
- data/lib/starter_web/_includes/attributes.asciidoc +1 -1
- data/lib/starter_web/_plugins/lunr_index.rb +1 -1
- data/lib/starter_web/package.json +1 -1
- data/lib/starter_web/utilsrv/_defaults/package.json +1 -1
- data/lib/starter_web/utilsrv/package.json +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 87c90ad224441e01f362a466acfbc93a089fc9c1a91402b43fc8434476ffd433
|
|
4
|
+
data.tar.gz: 3e6110304061098be73fc59be51ab8356747e8d0c8acc965dc0609fd6934b0a2
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: bc0aa9d6f7abe65be13a8d1f8568f259a66d9366ba54a5ba0ecf50f7ccb9b847e24310cb095d7d55a1ec1dc9c6344415c70143ec9a9e1264963c86edce03b8b4
|
|
7
|
+
data.tar.gz: 2a00b24f31e303fc2003ac5cb23b0715b203fcf377895cd13b67a9b8f3ee9c995f7baa0b1464120555d0ad38496b82ee25f49892b0e0c2c6be1261d96f598652
|
|
@@ -317,7 +317,7 @@ j1.adapter['navigator'] = (function (j1, window) {
|
|
|
317
317
|
xhr_data_path: navMenuOptions.xhr_data_path,
|
|
318
318
|
xhr_data_element: navMenuOptions.xhr_data_element },
|
|
319
319
|
'j1.adapter.navigator',
|
|
320
|
-
'
|
|
320
|
+
'data_loaded');
|
|
321
321
|
|
|
322
322
|
var dependencies_met_load_menu_finished = setInterval (function () {
|
|
323
323
|
if (j1.xhrDOMState['#'+navQuicklinksOptions.xhr_container_id] == 'not loaded' ||
|
|
@@ -356,6 +356,9 @@ j1.adapter['navigator'] = (function (j1, window) {
|
|
|
356
356
|
// load themes (to menu) if themer is enabled|finished
|
|
357
357
|
if (themerEnabled) {
|
|
358
358
|
|
|
359
|
+
logText = 'theme switcher: enabled';
|
|
360
|
+
logger.info(logText);
|
|
361
|
+
|
|
359
362
|
// Detect|Set J1 UserState
|
|
360
363
|
user_state_detected = j1.existsCookie(cookie_user_state_name);
|
|
361
364
|
if (user_state_detected) {
|
|
@@ -363,12 +366,12 @@ j1.adapter['navigator'] = (function (j1, window) {
|
|
|
363
366
|
}
|
|
364
367
|
|
|
365
368
|
var dependencies_met_page_finished = setInterval(function() {
|
|
366
|
-
|
|
367
|
-
//
|
|
368
|
-
|
|
369
|
+
// jadams, 2020-10-03: NOT needed to wait for j1 get finished
|
|
370
|
+
// if (j1.getState() == 'finished') {
|
|
371
|
+
// jadams, 2021-06-22: disabled check on themer get finished
|
|
372
|
+
// if (j1.adapter.themer.getState() == 'finished') {
|
|
373
|
+
if ('true' === 'true') {
|
|
369
374
|
// initialize theme switcher menus
|
|
370
|
-
logText = 'theme switcher detect: enabled';
|
|
371
|
-
logger.info(logText);
|
|
372
375
|
|
|
373
376
|
logText = 'load themes';
|
|
374
377
|
logger.info(logText);
|
|
@@ -2,12 +2,10 @@
|
|
|
2
2
|
<html>
|
|
3
3
|
<head>
|
|
4
4
|
<meta charset="utf-8" />
|
|
5
|
-
<title>iFrame message passing test
|
|
6
|
-
<meta name="description" content="iFrame message passing test
|
|
5
|
+
<title>iFrame message passing test</title>
|
|
6
|
+
<meta name="description" content="iFrame message passing test" />
|
|
7
7
|
<meta name="viewport" content="width=device-width" />
|
|
8
8
|
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
|
9
|
-
<meta name="robots" content="noindex">
|
|
10
|
-
<meta name="robots" content="nofollow">
|
|
11
9
|
<style>
|
|
12
10
|
a.back {
|
|
13
11
|
float: right;
|
|
@@ -2,11 +2,10 @@
|
|
|
2
2
|
<html>
|
|
3
3
|
<head>
|
|
4
4
|
<meta charset="utf-8" />
|
|
5
|
-
<title>iFrame message passing test
|
|
6
|
-
<meta name="description" content="iFrame message passing test
|
|
5
|
+
<title>iFrame message passing test</title>
|
|
6
|
+
<meta name="description" content="iFrame message passing test" />
|
|
7
7
|
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
|
8
|
-
|
|
9
|
-
<meta name="robots" content="nofollow">
|
|
8
|
+
|
|
10
9
|
<style>
|
|
11
10
|
*,
|
|
12
11
|
*:before,
|
|
@@ -2,11 +2,9 @@
|
|
|
2
2
|
<html>
|
|
3
3
|
<head>
|
|
4
4
|
<meta charset="utf-8" />
|
|
5
|
-
<title>iFrame message passing test
|
|
6
|
-
<meta name="description" content="iFrame message passing test
|
|
5
|
+
<title>iFrame message passing test</title>
|
|
6
|
+
<meta name="description" content="iFrame message passing test" />
|
|
7
7
|
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
|
8
|
-
<meta name="robots" content="noindex">
|
|
9
|
-
<meta name="robots" content="nofollow">
|
|
10
8
|
<style>
|
|
11
9
|
a {
|
|
12
10
|
float: right;
|
|
@@ -2,12 +2,10 @@
|
|
|
2
2
|
<html>
|
|
3
3
|
<head>
|
|
4
4
|
<meta charset="utf-8" />
|
|
5
|
-
<title>iFrame message passing test
|
|
6
|
-
<meta name="description" content="iFrame message passing test
|
|
5
|
+
<title>iFrame message passing test</title>
|
|
6
|
+
<meta name="description" content="iFrame message passing test" />
|
|
7
7
|
<meta name="viewport" content="width=device-width" />
|
|
8
8
|
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
|
9
|
-
<meta name="robots" content="noindex">
|
|
10
|
-
<meta name="robots" content="nofollow">
|
|
11
9
|
<style>
|
|
12
10
|
*,
|
|
13
11
|
*:before,
|
|
@@ -2,11 +2,9 @@
|
|
|
2
2
|
<html>
|
|
3
3
|
<head>
|
|
4
4
|
<meta charset="utf-8" />
|
|
5
|
-
<title>iFrame message passing test
|
|
6
|
-
<meta name="description" content="iFrame message passing test
|
|
5
|
+
<title>iFrame message passing test</title>
|
|
6
|
+
<meta name="description" content="iFrame message passing test" />
|
|
7
7
|
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
|
8
|
-
<meta name="robots" content="noindex">
|
|
9
|
-
<meta name="robots" content="nofollow">
|
|
10
8
|
<style>
|
|
11
9
|
a {
|
|
12
10
|
float: right;
|
|
@@ -2,10 +2,8 @@
|
|
|
2
2
|
<html>
|
|
3
3
|
<head>
|
|
4
4
|
<meta charset="utf-8" />
|
|
5
|
-
<title>iFrame message passing test
|
|
6
|
-
<meta name="description" content="iFrame message passing test
|
|
7
|
-
<meta name="robots" content="noindex">
|
|
8
|
-
<meta name="robots" content="nofollow">
|
|
5
|
+
<title>iFrame message passing test</title>
|
|
6
|
+
<meta name="description" content="iFrame message passing test" />
|
|
9
7
|
<style>
|
|
10
8
|
a.back {
|
|
11
9
|
float: right;
|
|
@@ -6,8 +6,6 @@
|
|
|
6
6
|
<meta name="description" content="iFrame message passing test" />
|
|
7
7
|
<meta name="viewport" content="width=device-width" />
|
|
8
8
|
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
|
9
|
-
<meta name="robots" content="noindex">
|
|
10
|
-
<meta name="robots" content="nofollow">
|
|
11
9
|
</head>
|
|
12
10
|
|
|
13
11
|
<body>
|
|
@@ -2,12 +2,10 @@
|
|
|
2
2
|
<html>
|
|
3
3
|
<head>
|
|
4
4
|
<meta charset="utf-8" />
|
|
5
|
-
<title>iFrame message passing test
|
|
6
|
-
<meta name="description" content="iFrame message passing test
|
|
5
|
+
<title>iFrame message passing test</title>
|
|
6
|
+
<meta name="description" content="iFrame message passing test" />
|
|
7
7
|
<meta name="viewport" content="width=device-width" />
|
|
8
8
|
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
|
9
|
-
<meta name="robots" content="noindex">
|
|
10
|
-
<meta name="robots" content="nofollow">
|
|
11
9
|
</head>
|
|
12
10
|
|
|
13
11
|
<body>
|
data/lib/j1/version.rb
CHANGED
data/lib/starter_web/Gemfile
CHANGED
|
@@ -54,7 +54,7 @@ gem 'jekyll', '~> 4.2'
|
|
|
54
54
|
|
|
55
55
|
# Theme Rubies, default: J1 Template (NOT used for the development system)
|
|
56
56
|
#
|
|
57
|
-
gem 'j1-template', '~> 2021.1.
|
|
57
|
+
gem 'j1-template', '~> 2021.1.4'
|
|
58
58
|
|
|
59
59
|
# ------------------------------------------------------------------------------
|
|
60
60
|
# PRODUCTION: Gem needed for the Jekyll and J1 prod environment
|
data/lib/starter_web/_config.yml
CHANGED
|
@@ -53,7 +53,7 @@ environment: production
|
|
|
53
53
|
# ------------------------------------------------------------------------------
|
|
54
54
|
# Sets the build version of J1 Template Gem
|
|
55
55
|
#
|
|
56
|
-
version: 2021.1.
|
|
56
|
+
version: 2021.1.4
|
|
57
57
|
|
|
58
58
|
# version
|
|
59
59
|
# ------------------------------------------------------------------------------
|
|
@@ -520,7 +520,6 @@ whitelist:
|
|
|
520
520
|
# EXCERPT settings
|
|
521
521
|
#
|
|
522
522
|
excerpt_separator: excerpt__end
|
|
523
|
-
excerpt_truncate_words: 100
|
|
524
523
|
|
|
525
524
|
# ------------------------------------------------------------------------------
|
|
526
525
|
# COLLECTION settings
|
|
@@ -403,7 +403,7 @@ end::tables[]
|
|
|
403
403
|
// -----------------------------------------------------------------------------
|
|
404
404
|
tag::products[]
|
|
405
405
|
:j1--license: MIT License
|
|
406
|
-
:j1--version: 2021.1.
|
|
406
|
+
:j1--version: 2021.1.4
|
|
407
407
|
:j1--site-name: Jekyll One
|
|
408
408
|
end::products[]
|
|
409
409
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: j1-template
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2021.1.
|
|
4
|
+
version: 2021.1.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- juergen_jekyll_one
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2021-06-
|
|
11
|
+
date: 2021-06-22 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: jekyll
|