Skip to content

Commit 176ed41

Browse files
committed
Improving previous bug fix for more edge cases
1 parent 75c17e3 commit 176ed41

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

dist/jails.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/jails.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "jails-js",
3-
"version": "5.9.0",
3+
"version": "5.8.7",
44
"description": "Jails - Elegant and Minimalistic Javascript Application Library",
55
"module": "./dist/jails.js",
66
"main": "./dist/jails.js",

src/template-system.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import Transpile from './transpile'
22
import { uuid, decodeHTML } from './utils'
33

44
const config = {
5-
tags: ['{{', '}}']
5+
tags: ['${', '}']
66
}
77

88
export const templateConfig = (newconfig) => {
@@ -71,6 +71,6 @@ const createTemplateId = (element, templates, components ) => {
7171
const fixDIffIf = (node) => {
7272
const _if = node.querySelectorAll('[html-if]')
7373
_if.forEach( el => {
74-
el.parentNode.insertBefore(document.createComment('[html-if]'), el.nextSibling)
74+
el.parentNode.insertBefore(document.createComment(''), el.nextSibling)
7575
})
7676
}

0 commit comments

Comments
 (0)