X-Git-Url: http://git.bytex64.net/?a=blobdiff_plain;f=www%2Fjssrc%2Fblerg%2FRecord.js;h=64c807042637ec965f147fe4a55400e874cf85d5;hb=3e5f69d01b9488475413d4ecce8161ab7a889ca2;hp=5d4cf23d91eb03b8a24055f224824ebc85051a61;hpb=73a1174eca9932fa03220d13222b6a62eda2bfa1;p=blerg.git diff --git a/www/jssrc/blerg/Record.js b/www/jssrc/blerg/Record.js index 5d4cf23..64c8070 100644 --- a/www/jssrc/blerg/Record.js +++ b/www/jssrc/blerg/Record.js @@ -9,13 +9,13 @@ enyo.kind({ record: null }, components: [ - {name: "data", noDom: true, allowHtml: true}, + {name: "data", tag: null, allowHtml: true}, {classes: "info", components: [ - {noDom: true, content: "Posted "}, - {name: "date", noDom: true}, - {noDom: true, content: ". "}, + {tag: null, content: "Posted "}, + {name: "date", tag: null}, + {tag: null, content: ". "}, {name: "permalink", kind: "blerg.Link", content: "[permalink]"}, - {noDom: true, content: " "}, + {tag: null, content: " "}, {name: "reply", kind: "blerg.Link", content: "[reply]", onNavigate: "postPopup"} ]} ], @@ -53,15 +53,15 @@ enyo.kind({ name: "blerg.TagRecord", kind: "blerg.Record", components: [ - {name: "data", noDom: true, allowHtml: true}, + {name: "data", tag: null, allowHtml: true}, {classes: "info", components: [ - {noDom: true, content: "Posted by "}, + {tag: null, content: "Posted by "}, {name: "author", kind: "blerg.Link", classes: "author ref"}, - {noDom: true, content: " at "}, - {name: "date", noDom: true}, - {noDom: true, content: ". "}, + {tag: null, content: " at "}, + {name: "date", tag: null}, + {tag: null, content: ". "}, {name: "permalink", kind: "blerg.Link", content: "[permalink]"}, - {noDom: true, content: " "}, + {tag: null, content: " "}, {name: "reply", kind: "blerg.Link", content: "[reply]", onNavigate: "postPopup"} ]} ], @@ -77,8 +77,8 @@ enyo.kind({ kind: "blerg.Record", components: [ {name: "authorlink", kind: "blerg.Link", classes: "author ref"}, - {noDom: true, content: " "}, - {name: "data", noDom: true} + {tag: null, content: " "}, + {name: "data", tag: null} ], dataChanged: function() { var d = this.data.replace(/&/g, '&').replace(//g, '>');