From 1ac07bcb58461aa5ac77758d6f87948ea06d3d99 Mon Sep 17 00:00:00 2001 From: Dan Jones Date: Mon, 23 Oct 2017 07:15:33 -0500 Subject: [PATCH] Back to old layout MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Revert "Revert "Revert "💪 Support new layout""" This reverts commit eba9c3bdac2eb0fcb64c193eac40e7acd4928e78. --- amaz.giveaway.user.js | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/amaz.giveaway.user.js b/amaz.giveaway.user.js index 6caedc1..758614b 100644 --- a/amaz.giveaway.user.js +++ b/amaz.giveaway.user.js @@ -4,7 +4,7 @@ // @description Allow removal of visited links on Amazon Giveaway Listing // @include https://smile.amazon.com/ga/giveaways* // @include https://www.amazon.com/ga/giveaways* -// @version 1.7 +// @version 1.7.1 // @require https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js // ==/UserScript== @@ -16,12 +16,12 @@ var getSmallUrl = function(fullUrl) { }; var hideOne = function(el) { - $(el).parents('.giveawayItemContainer').css('display', checked ? 'none' : 'block'); + $(el).parents('div.a-spacing-base').css('display', checked ? 'none' : 'block'); }; var hideVisited = function(evt) { checked = $(this).prop('checked'); - var $links = $('#giveaway-grid a[href*="amazon.com/ga"]'); + var $links = $('.landingPageSpacings a[href*="amazon.com/ga"]'); var hide = regex_hide ? new RegExp(regex_hide, 'i') : null; @@ -39,7 +39,7 @@ var hideVisited = function(evt) { }; $(document).ready(function() { - $('#giveaway-grid').on('click', 'a[href*="amazon.com/ga"]', function(evt) { + $('.landingPageSpacings').on('click', 'a[href*="amazon.com/ga"]', function(evt) { var href = getSmallUrl($(this).attr('href')); localStorage[href] = "visited"; @@ -48,9 +48,9 @@ $(document).ready(function() { regex_hide = localStorage.getItem('regex_hide') || ''; - $('#giveaway-result-info-bar-content') - .append('') - .append(``); + $('h1:contains("Giveaways")') + .after('') + .after(``); $('#hide_visited').on('click', hideVisited); $('#hide_regex').on('change', function() {