We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5b1c0ee commit 89cd245Copy full SHA for 89cd245
1 file changed
src/js/link.js
@@ -819,7 +819,15 @@ var link = (function() {
819
var makeGroupOptions = function() {
820
if (bookmarks.get().length > 0) {
821
bookmarks.get().forEach(function(arrayItem, index) {
822
- groupExistingGroup.appendChild(helper.node("option:" + arrayItem.name + "|value:" + arrayItem.name));
+ var option = helper.makeNode({
823
+ tag: "option",
824
+ text: arrayItem.name,
825
+ attr: [{
826
+ key: "value",
827
+ value: arrayItem.name
828
+ }]
829
+ });
830
+ groupExistingGroup.appendChild(option);
831
});
832
} else {
833
groupNewRadio.checked = true;
0 commit comments