💄 Enlarge pick icon and make it a wand

This commit is contained in:
Dan Jones 2020-08-03 19:48:33 -05:00
commit 409d0de43f

View file

@ -2,7 +2,7 @@
// ==UserScript== // ==UserScript==
// @name Trakt Show Picker // @name Trakt Show Picker
// @namespace danielrayjones // @namespace danielrayjones
// @version 0.0.8 // @version 0.0.9
// @description Pick a show from progress page // @description Pick a show from progress page
// @author Dan Jones // @author Dan Jones
// @match https://trakt.tv/users/*/progress* // @match https://trakt.tv/users/*/progress*
@ -25,7 +25,7 @@
const $leftNav = $('.subnav-wrapper .container .left'); const $leftNav = $('.subnav-wrapper .container .left');
const $found = $leftNav.find('.pick-episode'); const $found = $leftNav.find('.pick-episode');
if (!$found.length) { if (!$found.length) {
$leftNav.append('<span class="filter-dropdown pick-episode" title="Pick Episode"><span class="icon trakt-icon-bars"></span></span>') $leftNav.append('<span class="filter-dropdown toggle-simple-progress pick-episode" title="Pick Episode"><span class="icon trakt-icon-wand"></span></span>')
.find('.pick-episode').on('click', pickShow); .find('.pick-episode').on('click', pickShow);
} }
} }