mirror of
https://github.com/zombieFox/nightTab.git
synced 2025-02-01 19:09:51 +01:00
[bug] fix group name colon character support
This commit is contained in:
parent
31f07d925a
commit
933b16ad8c
@ -350,7 +350,14 @@ var link = (function() {
|
|||||||
|
|
||||||
var groupHeader = helper.node("div|class:group-header");
|
var groupHeader = helper.node("div|class:group-header");
|
||||||
var groupName = helper.node("div|class:group-name");
|
var groupName = helper.node("div|class:group-name");
|
||||||
var groupNameText = helper.node("h1:" + stagedGroup.group.name + "|class:group-name-text");
|
var groupNameText = helper.makeNode({
|
||||||
|
tag: "h1",
|
||||||
|
text: stagedGroup.group.name,
|
||||||
|
attr: [{
|
||||||
|
key: "class",
|
||||||
|
value: "group-name-text"
|
||||||
|
}]
|
||||||
|
});
|
||||||
var groupControl = helper.node("div|class:group-control form-group");
|
var groupControl = helper.node("div|class:group-control form-group");
|
||||||
|
|
||||||
groupName.appendChild(groupNameText);
|
groupName.appendChild(groupNameText);
|
||||||
|
Loading…
Reference in New Issue
Block a user