Skip to content

Commit 6c9f443

Browse files
committed
v1.0.14 release
This update provides additional features and improvements for {^{checkboxgroup}} and {^{radiogroup}} tags - together with supporting documentation. https://www.jsviews.com/#jsvcheckboxgrouptag@selector https://www.jsviews.com/#jsvradiogrouptag@selector See also advanced samples here: https://www.jsviews.com/#samples/sort-filter@nested-group-tags The update also brings improved domChangeEvent support. See the documentation here: https://www.jsviews.com/#tagoptions@domchange It also includes some additional minor bug fixes and documentation updates
1 parent 2440b69 commit 6c9f443

16 files changed

+4267
-47
lines changed

MIT-LICENSE.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2020 Boris Moore https://github.com/BorisMoore/jsrender
1+
Copyright (c) 2024 Boris Moore https://github.com/BorisMoore/jsrender
22

33
Permission is hereby granted, free of charge, to any person obtaining
44
a copy of this software and associated documentation files (the

jsrender-node.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
/*! JsRender v1.0.13: http://jsviews.com/#jsrender */
1+
/*! JsRender v1.0.14: http://jsviews.com/#jsrender */
22
/*! **VERSION FOR NODE.JS** (For WEB see http://jsviews.com/download/jsrender.js) */
33
/*
44
* Best-of-breed templating in browser or on Node.js.
55
* Does not require jQuery, or HTML DOM
66
* Integrates with JsViews (http://jsviews.com/#jsviews)
77
*
8-
* Copyright 2023, Boris Moore
8+
* Copyright 2024, Boris Moore
99
* Released under the MIT License.
1010
*/
1111

@@ -20,7 +20,7 @@ if (typeof exports !== 'object' ) {
2020
//========================== Top-level vars ==========================
2121

2222
// global var is the this object, which is window when running in the usual browser environment
23-
var versionNumber = "v1.0.13",
23+
var versionNumber = "v1.0.14",
2424
$, jsvStoreName, rTag, rTmplString, topView, $views,
2525
_ocp = "_ocp", // Observable contextual parameter
2626

@@ -405,7 +405,7 @@ function contextParameter(key, value, get) {
405405
// Not a contextual parameter
406406
// Set storeView to tag (if this is a tag.ctxPrm() call) or to root view ("data" view of linked template)
407407
storeView = storeView.tagCtx || $isFunction(res)
408-
? storeView // Is a tag, not a view, or is a computed contextual parameter, so scope to the callView, no the 'scope view'
408+
? storeView // Is a tag, not a view, or is a computed contextual parameter, so scope to the callView, not the 'scope view'
409409
: (storeView = storeView.scope || storeView,
410410
!storeView.isTop && storeView.ctx.tag // If this view is in a tag, set storeView to the tag
411411
|| storeView);

jsrender.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
/*! JsRender v1.0.13: http://jsviews.com/#jsrender */
1+
/*! JsRender v1.0.14: http://jsviews.com/#jsrender */
22
/*! **VERSION FOR WEB** (For NODE.JS see http://jsviews.com/download/jsrender-node.js) */
33
/*
44
* Best-of-breed templating in browser or on Node.js.
55
* Does not require jQuery, or HTML DOM
66
* Integrates with JsViews (http://jsviews.com/#jsviews)
77
*
8-
* Copyright 2021, Boris Moore
8+
* Copyright 2024, Boris Moore
99
* Released under the MIT License.
1010
*/
1111

@@ -44,7 +44,7 @@ var setGlobals = $ === false; // Only set globals if script block in browser (no
4444

4545
$ = $ && $.fn ? $ : global.jQuery; // $ is jQuery passed in by CommonJS loader (Browserify), or global jQuery.
4646

47-
var versionNumber = "v1.0.13",
47+
var versionNumber = "v1.0.14",
4848
jsvStoreName, rTag, rTmplString, topView, $views, $expando,
4949
_ocp = "_ocp", // Observable contextual parameter
5050

@@ -432,7 +432,7 @@ function contextParameter(key, value, get) {
432432
// Not a contextual parameter
433433
// Set storeView to tag (if this is a tag.ctxPrm() call) or to root view ("data" view of linked template)
434434
storeView = storeView.tagCtx || $isFunction(res)
435-
? storeView // Is a tag, not a view, or is a computed contextual parameter, so scope to the callView, no the 'scope view'
435+
? storeView // Is a tag, not a view, or is a computed contextual parameter, so scope to the callView, not the 'scope view'
436436
: (storeView = storeView.scope || storeView,
437437
!storeView.isTop && storeView.ctx.tag // If this view is in a tag, set storeView to the tag
438438
|| storeView);

jsrender.min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

jsrender.min.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)