Просмотр исходного кода

Copy title attribute from original element

Matthias Kurz 11 лет назад
Родитель
Сommit
bdb8840fb4
1 измененных файлов с 2 добавлено и 0 удалено
  1. 2 0
      select2.js

+ 2 - 0
select2.js

@@ -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"); });