Skip to content

Commit

Permalink
refs #18293, fix regression introduced in 0fe2064
Browse files Browse the repository at this point in the history
  • Loading branch information
dylans committed Nov 19, 2016
1 parent 5832341 commit 93f954f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion form/_BusyButtonMixin.js
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ return declare("dojox.form._BusyButtonMixin", null, {
while(this.containerNode.firstChild){
this.containerNode.removeChild(this.containerNode.firstChild);
}
this.containerNode.appendChild(document.createTextNode(this.label));
this.containerNode.appendChild(domConstruct.toDom(this.label));

if(this.showLabel == false && !domAttr.get(this.domNode, "title")){
this.titleNode.title=lang.trim(this.containerNode.innerText || this.containerNode.textContent || '');
Expand Down

2 comments on commit 93f954f

@petrstahl
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Did not work for me until adding "dojo/dom-construct" dependency.

@dylans
Copy link
Member Author

@dylans dylans commented on 93f954f Dec 25, 2016

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@petrstahl thanks, addressed via #252

Please sign in to comment.