From fc701824f6a1e427b948db54cc8c4d5a06811ac4 Mon Sep 17 00:00:00 2001 From: Marvin Lehmann Date: Sun, 18 Feb 2018 10:55:43 +0100 Subject: [PATCH] Fixed layout --- ani-search-enhancer.user.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/ani-search-enhancer.user.js b/ani-search-enhancer.user.js index 8121a18..134610a 100644 --- a/ani-search-enhancer.user.js +++ b/ani-search-enhancer.user.js @@ -1,7 +1,7 @@ // ==UserScript== // @name aniSearch Enhancer // @namespace http://github.com/marvinlehmann/ani-search-enhancer -// @version 1.3 +// @version 1.4 // @description Adds buttons to the info site of an anime on aniSearch which links you directly to various streaming portals. // @author Marvin Lehmann // @grant none @@ -14,7 +14,7 @@ this.$ = this.jQuery = jQuery.noConflict(true); $(document).ready(function() { - $('head').append(''); + $('head').append(''); var animeTitleElem = document.getElementById('htitle'); if (animeTitleElem !== null) { @@ -23,9 +23,9 @@ $(document).ready(function() { var encodedTitle = encodeURI(animeTitle).replace(/'/g, "%27"); if (document.getElementById('page-action') === null) $('#infodetails').before('
'); - $('#page-action').append(''); - $('#page-action').append(''); - $('#page-action').append(''); + $('#page-action').append(''); + $('#page-action').append(''); + $('#page-action').append(''); } } });