FIX 7742 Decode the URI encoded attribute before displaying it as the value for the tree dropdown

This commit is contained in:
jean 2012-08-07 09:04:42 +12:00
parent 9b15bac8f3
commit 34812971cc

View File

@ -262,7 +262,7 @@
onadd: function() {
this._super();
var title = this.data('title');
var title = decodeURIComponent(this.data('title'));
this.find('.treedropdownfield-title').replaceWith(
$('<input type="text" class="treedropdownfield-title search" />')
);