Skip to content
Snippets Groups Projects
Commit dc5cd2bf authored by Piotr Gawron's avatar Piotr Gawron
Browse files

pinned checkbox is checked by default

parent 0525b611
No related branches found
No related tags found
1 merge request!109Resolve "test issues"
......@@ -85,6 +85,8 @@ CommentDialog.prototype._createGui = function() {
pinnedLabel.innerHTML = "Pinned";
var pinnedCheckbox = document.createElement('input');
pinnedCheckbox.type = "checkbox";
pinnedCheckbox.checked = "checked";
table.appendChild(createRow([ pinnedLabel, pinnedCheckbox ]));
this.setPinnedCheckbox(pinnedCheckbox);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment