1
0
mirror of synced 2025-02-03 21:59:24 +03:00

Merge pull request #2257 from mkurz/title_fix

Copy title attribute from original element
This commit is contained in:
Kevin Brown 2014-04-14 22:05:37 -04:00
commit 24f4bbfefb

View File

@ -694,6 +694,8 @@ the specific language governing permissions and limitations under the Apache Lic
this.containerSelector="#"+this.containerId;
this.container.attr("id", this.containerId);
this.container.attr("title", opts.element.attr("title"));
// cache the body so future lookups are cheap
this.body = thunk(function() { return opts.element.closest("body"); });