Update to Enyo and Onyx 2.0-beta4
[blerg.git] / www / jssrc / blerg / Record.js
index 5d4cf23..64c8070 100644 (file)
@@ -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, '&amp;').replace(/</g, '&lt;').replace(/>/g, '&gt;');