diff rakuten-books-direct-search.user.js @ 117:d9dc190bccaf

Undo combining fixes into single script per site
author nanaya <me@nanaya.net>
date Sun, 15 Jan 2023 23:49:35 +0900
parents ef21ef445fc6
children 8de2d53a4cb1
line wrap: on
line diff
--- a/rakuten-books-direct-search.user.js	Sun Jan 15 23:46:56 2023 +0900
+++ b/rakuten-books-direct-search.user.js	Sun Jan 15 23:49:35 2023 +0900
@@ -15,14 +15,10 @@
 'use strict';
 
 /* global jQuery */
-function noTrackSearch () {
-  const $ = jQuery;
-  const $form = $("form[name='srchFrm']");
+const $ = jQuery;
+const $form = $("form[name='srchFrm']");
 
-  if (!$form.length) { return; }
-
+if ($form.length > 0) {
   const searchUrl = $form.find("input[name='R2']").attr('value');
   $form.attr('action', searchUrl);
 }
-
-noTrackSearch();