We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 31f07d9 commit 933b16aCopy full SHA for 933b16a
src/js/link.js
@@ -350,7 +350,14 @@ var link = (function(){
350
351
vargroupHeader=helper.node("div|class:group-header");
352
vargroupName=helper.node("div|class:group-name");
353
-vargroupNameText=helper.node("h1:"+stagedGroup.group.name+"|class:group-name-text");
+vargroupNameText=helper.makeNode({
354
+tag: "h1",
355
+text: stagedGroup.group.name,
356
+attr: [{
357
+key: "class",
358
+value: "group-name-text"
359
+}]
360
+});
361
vargroupControl=helper.node("div|class:group-control form-group");
362
363
groupName.appendChild(groupNameText);
0 commit comments