1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2025-12-23 08:46:58 +00:00

Getting selective refresh working

A bunch of changes, and we're halfway there
This commit is contained in:
Jeremy Ruston
2012-01-25 10:51:04 +00:00
parent 0d9a94e702
commit dad7756f65
6 changed files with 77 additions and 86 deletions

View File

@@ -276,11 +276,8 @@ utils.stitchElement = function(element,attributes,options) {
if(options.classNames) {
output.push(" class='",options.classNames.join(" "),"'");
}
if(options.selfClosing) {
output.push(" /");
}
output.push(">");
if(options.content) {
if("content" in options) {
output.push(options.content);
output.push("</",element,">");
}