use .attr('href') like we do everywhere else (bug 581588)

This commit is contained in:
Jeff Balogh 2010-07-23 15:49:14 -07:00
Родитель 71307f7676
Коммит e8bb617c04
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -66,7 +66,7 @@ var installButton = function() {
var message = function(msg) {
return function(){
// Get the xpi link for the first visible button.
params.url = $button.filter(':visible')[0].href;
params.url = $button.filter(':visible').attr('href');
return format(z.button.messages[msg], params);
}
};