@aurelia/jit
Advanced tools
Comparing version 0.3.0-dev.20181030 to 0.3.0-dev.20181101
{ | ||
"name": "@aurelia/jit", | ||
"version": "0.3.0-dev.20181030", | ||
"version": "0.3.0-dev.20181101", | ||
"main": "dist/index.umd.js", | ||
@@ -46,4 +46,4 @@ "module": "dist/index.es6.js", | ||
"dependencies": { | ||
"@aurelia/kernel": "^0.3.0-dev.20181030", | ||
"@aurelia/runtime": "^0.3.0-dev.20181030" | ||
"@aurelia/kernel": "^0.3.0-dev.20181101", | ||
"@aurelia/runtime": "^0.3.0-dev.20181101" | ||
}, | ||
@@ -84,3 +84,3 @@ "devDependencies": { | ||
}, | ||
"gitHead": "8b81e64bba48a4390369a1f4fbba4e7808e14051" | ||
"gitHead": "208629802ac4ec90d544dd014a99244960412858" | ||
} |
@@ -168,3 +168,7 @@ import { inject, PLATFORM } from '@aurelia/kernel'; | ||
$el.addInstructions([new HydrateElementInstruction($el.definition.name, <any>PLATFORM.emptyArray)]); | ||
$el.makeTarget(); | ||
if ($el.definition.containerless) { | ||
$el.replaceNodeWithMarker(); | ||
} else { | ||
$el.makeTarget(); | ||
} | ||
return; | ||
@@ -210,3 +214,7 @@ } | ||
$el.addInstructions([new HydrateElementInstruction($el.definition.name, attributeInstructions), ...siblingInstructions]); | ||
$el.makeTarget(); | ||
if ($el.definition.containerless) { | ||
$el.replaceNodeWithMarker(); | ||
} else { | ||
$el.makeTarget(); | ||
} | ||
} | ||
@@ -213,0 +221,0 @@ |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
665612
7338