зеркало из https://github.com/mozilla/ubiquity.git
cmdlist: Avoided using potentially malformed selector.
This commit is contained in:
Родитель
10db3ca3d0
Коммит
c98dc6ba23
|
@ -95,7 +95,8 @@ function fillTableCellForFeed(cell, feed, sortMode) {
|
|||
function unsubscribe() {
|
||||
feed.remove();
|
||||
cell.slideUp(function onUnsubscribe() {
|
||||
$("a[name^='" + feedUrl + "']").closest("tr").remove();
|
||||
$(".id").filter(function() ~this.name.lastIndexOf(feedUrl, 0))
|
||||
.closest("tr").remove();
|
||||
updateSubscribedCount();
|
||||
buildUnsubscribedFeeds();
|
||||
});
|
||||
|
|
Загрузка…
Ссылка в новой задаче