This commit is contained in:
jrburke 2011-03-29 10:53:04 -07:00
Родитель ed7a9342c5
Коммит ba8b4aa78d
1 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@ -48,10 +48,10 @@ function (object, Widget, fn, $, dispatch,
opts = this.options; opts = this.options;
root.find('.thumb').attr('src', jigFuncs.thumb(opts)); root.find('.thumb').attr('src', jigFuncs.thumb(opts));
root.find('.title').html(opts.title); root.find('.title').text(opts.title);
root.find('.description').text(opts.description); root.find('.description').text(opts.description);
root.find('.url').html(jigFuncs.cleanLink(opts.url)); root.find('.url').text(jigFuncs.cleanLink(opts.url));
root.find('.shorturl').html(jigFuncs.cleanLink(opts.shortUrl)); root.find('.shorturl').text(jigFuncs.cleanLink(opts.shortUrl));
//Update text overflow. //Update text overflow.
$(".overflow", this.node).textOverflow(); $(".overflow", this.node).textOverflow();