diff --git a/chrome/content/zotero/bindings/guidancepanel.xml b/chrome/content/zotero/bindings/guidancepanel.xml index 6703bb9b94..41560f908f 100644 --- a/chrome/content/zotero/bindings/guidancepanel.xml +++ b/chrome/content/zotero/bindings/guidancepanel.xml @@ -54,6 +54,11 @@ if(!text) text = Zotero.getString("firstRunGuidance."+about); text = text.split("\n"); var descriptionNode = panel.lastChild; + + while (descriptionNode.hasChildNodes()) { + descriptionNode.removeChild(descriptionNode.firstChild); + } + while(text.length) { var textLine = text.shift(); descriptionNode.appendChild(document.createTextNode(textLine));