Back to new layout, again

Revert "amaz-giveaway: Get title on old layout"

This reverts commit ab8566ebd9.

Revert "Back to old layout"

This reverts commit 1ac07bcb58.
This commit is contained in:
Dan Jones 2017-10-26 07:12:01 -05:00
commit 4d7686eccd

View file

@ -4,7 +4,7 @@
// @description Allow removal of visited links on Amazon Giveaway Listing // @description Allow removal of visited links on Amazon Giveaway Listing
// @include https://smile.amazon.com/ga/giveaways* // @include https://smile.amazon.com/ga/giveaways*
// @include https://www.amazon.com/ga/giveaways* // @include https://www.amazon.com/ga/giveaways*
// @version 1.7.2 // @version 1.7.3
// @require https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js // @require https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js
// ==/UserScript== // ==/UserScript==
@ -16,12 +16,12 @@ var getSmallUrl = function(fullUrl) {
}; };
var hideOne = function(el) { var hideOne = function(el) {
$(el).parents('div.a-spacing-base').css('display', checked ? 'none' : 'block'); $(el).parents('.giveawayItemContainer').css('display', checked ? 'none' : 'block');
}; };
var hideVisited = function(evt) { var hideVisited = function(evt) {
checked = $(this).prop('checked'); checked = $(this).prop('checked');
var $links = $('.landingPageSpacings a[href*="amazon.com/ga"]'); var $links = $('#giveaway-grid a[href*="amazon.com/ga"]');
var hide = regex_hide ? new RegExp(regex_hide, 'i') : null; var hide = regex_hide ? new RegExp(regex_hide, 'i') : null;
@ -31,7 +31,7 @@ var hideVisited = function(evt) {
hideOne(this); hideOne(this);
} }
var title= $(this).parent('.a-row').siblings('.ellipsis-1-line').text(); var title = $(this).find('.giveawayPrizeNameContainer').text();
if (hide && title && hide.test(title)) { if (hide && title && hide.test(title)) {
hideOne(this); hideOne(this);
} }
@ -39,7 +39,7 @@ var hideVisited = function(evt) {
}; };
$(document).ready(function() { $(document).ready(function() {
$('.landingPageSpacings').on('click', 'a[href*="amazon.com/ga"]', function(evt) { $('#giveaway-grid').on('click', 'a[href*="amazon.com/ga"]', function(evt) {
var href = getSmallUrl($(this).attr('href')); var href = getSmallUrl($(this).attr('href'));
localStorage[href] = "visited"; localStorage[href] = "visited";
@ -48,9 +48,9 @@ $(document).ready(function() {
regex_hide = localStorage.getItem('regex_hide') || ''; regex_hide = localStorage.getItem('regex_hide') || '';
$('h1:contains("Giveaways")') $('#giveaway-result-info-bar-content')
.after('<label><input type="checkbox" id="hide_visited"/> Visited</label>') .append('<label><input type="checkbox" id="hide_visited"/> Visited</label>')
.after(`<input id="hide_regex" value="${regex_hide}"/>`); .append(`<input id="hide_regex" value="${regex_hide}"/>`);
$('#hide_visited').on('click', hideVisited); $('#hide_visited').on('click', hideVisited);
$('#hide_regex').on('change', function() { $('#hide_regex').on('change', function() {