From: Scott González Date: Thu, 20 Oct 2011 17:28:31 +0000 (-0400) Subject: Button: Create text span in correct document. X-Git-Tag: 1.8.17~21 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=39e75ade1de8c37f120fc13aadc048c23211138c;p=jquery-ui.git Button: Create text span in correct document. (cherry picked from commit c145f1698aa4bfb8b0d1c94e2bfa83399f1de0f3) --- diff --git a/ui/jquery.ui.button.js b/ui/jquery.ui.button.js index 7774ab937..31074e2e1 100644 --- a/ui/jquery.ui.button.js +++ b/ui/jquery.ui.button.js @@ -319,7 +319,7 @@ $.widget( "ui.button", { return; } var buttonElement = this.buttonElement.removeClass( typeClasses ), - buttonText = $( "" ) + buttonText = $( "", this.element[0].ownerDocument ) .addClass( "ui-button-text" ) .html( this.options.label ) .appendTo( buttonElement.empty() )