1
0
mirror of synced 2024-11-22 13:06:08 +03:00

Merge pull request #3074 from loic/title_when_multiple

Fixed the title attribute for choices on "multiple" widgets.
This commit is contained in:
Kevin Brown 2015-02-27 20:41:04 -05:00
commit 4eaa8c5488

View File

@ -85,7 +85,7 @@ define([
var $selection = this.selectionContainer();
$selection.append(formatted);
$selection.prop('title', selection.title);
$selection.prop('title', selection.title || selection.text);
$selection.data('data', selection);