Skip to content

Commit 57f8b03

Browse files
committed
v1.0.16 release
Several minor bug fixes, in JsRender, JsViews and JsViews.com: #374 Prevent prototype pollution attacks BorisMoore/jsviews#468 View Model data mapping: JSON.parse inconsistency BorisMoore/jsviews#466 View Model 'sort' not working BorisMoore/jsviews#463 Checkboxgroup issue when used with View Model #375 isArray and isFunction switch to using native implentations, instead of deprecated jQuery versions.
1 parent e3e3d09 commit 57f8b03

48 files changed

Lines changed: 915 additions & 894 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

MIT-LICENSE.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2024 Boris Moore https://github.com/BorisMoore/jsrender
1+
Copyright (c) 2025 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

demos/scenarios/01_default-values-scenario.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<!DOCTYPE html>
22
<html>
33
<head>
4-
<script src="//code.jquery.com/jquery-3.6.4.js" type="text/javascript"></script>
4+
<script src="//code.jquery.com/jquery-3.7.1.js" type="text/javascript"></script>
55
<script src="../../jsrender.js" type="text/javascript"></script>
66
<link href="../resources/demos.css" rel="stylesheet" type="text/css" />
77

demos/scenarios/02_separators-scenario.html

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
<!DOCTYPE html>
22
<html>
33
<head>
4-
<script src="//code.jquery.com/jquery-3.6.4.js" type="text/javascript"></script>
5-
<script src="../../jquery-1.8.0.js" type="text/javascript"></script>
4+
<script src="//code.jquery.com/jquery-3.7.1.js" type="text/javascript"></script>
65
<script src="../../jsrender.js" type="text/javascript"></script>
76
<link href="../resources/demos.css" rel="stylesheet" type="text/css" />
87

demos/scenarios/03_iterating-through-fields-scenario.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<!DOCTYPE html>
22
<html>
33
<head>
4-
<script src="//code.jquery.com/jquery-3.6.4.js" type="text/javascript"></script>
4+
<script src="//code.jquery.com/jquery-3.7.1.js" type="text/javascript"></script>
55
<script src="../../jsrender.js" type="text/javascript"></script>
66
<link href="../resources/demos.css" rel="stylesheet" type="text/css" />
77

demos/scenarios/04_assigning-variables-scenario.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<!DOCTYPE html>
22
<html>
33
<head>
4-
<script src="//code.jquery.com/jquery-3.6.4.js" type="text/javascript"></script>
4+
<script src="//code.jquery.com/jquery-3.7.1.js" type="text/javascript"></script>
55
<script src="../../jsrender.js" type="text/javascript"></script>
66
<link href="../resources/demos.css" rel="stylesheet" type="text/css" />
77

demos/scenarios/05_arrays-plus-headers-and-footers.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<!DOCTYPE html>
22
<html>
33
<head>
4-
<script src="//code.jquery.com/jquery-3.6.4.js" type="text/javascript"></script>
4+
<script src="//code.jquery.com/jquery-3.7.1.js" type="text/javascript"></script>
55
<script src="../../jsrender.js" type="text/javascript"></script>
66
<link href="../resources/demos.css" rel="stylesheet" type="text/css" />
77

demos/step-by-step/01_inserting-data.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<!DOCTYPE html>
22
<html>
33
<head>
4-
<script src="//code.jquery.com/jquery-3.6.4.js" type="text/javascript"></script>
4+
<script src="//code.jquery.com/jquery-3.7.1.js" type="text/javascript"></script>
55
<script src="../../jsrender.js" type="text/javascript"></script>
66
<link href="../resources/demos.css" rel="stylesheet" type="text/css" />
77
</head>

demos/step-by-step/02_compiling-named-templates-from-strings.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<!DOCTYPE html>
22
<html>
33
<head>
4-
<script src="//code.jquery.com/jquery-3.6.4.js" type="text/javascript"></script>
4+
<script src="//code.jquery.com/jquery-3.7.1.js" type="text/javascript"></script>
55
<script src="../../jsrender.js" type="text/javascript"></script>
66
<link href="../resources/demos.css" rel="stylesheet" type="text/css" />
77

demos/step-by-step/03_converters-and-encoding.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<!DOCTYPE html>
22
<html>
33
<head>
4-
<script src="//code.jquery.com/jquery-3.6.4.js" type="text/javascript"></script>
4+
<script src="//code.jquery.com/jquery-3.7.1.js" type="text/javascript"></script>
55
<script src="../../jsrender.js" type="text/javascript"></script>
66
<link href="../resources/demos.css" rel="stylesheet" type="text/css" />
77

demos/step-by-step/04_if-else-tag.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<!DOCTYPE html>
22
<html>
33
<head>
4-
<script src="//code.jquery.com/jquery-3.6.4.js" type="text/javascript"></script>
4+
<script src="//code.jquery.com/jquery-3.7.1.js" type="text/javascript"></script>
55
<script src="../../jsrender.js" type="text/javascript"></script>
66
<link href="../resources/demos.css" rel="stylesheet" type="text/css" />
77

0 commit comments

Comments
 (0)