Skip to content

Commit

Permalink
Merge pull request #33 from joncrangle/mobile-improvement-and-spelling
Browse files Browse the repository at this point in the history
Mobile improvement and spelling fixes
  • Loading branch information
mms-gianni authored Nov 13, 2023
2 parents 4d5c25c + 4e44a24 commit 11ee581
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ It is possible to apply custom rules to modify the response. This can be used to
See in [ruleset.yaml](ruleset.yaml) for an example.

```yaml
- domain: example.com # Inbcludes all subdomains
- domain: example.com # Includes all subdomains
domains: # Additional domains to apply the rule
- www.example.de
- www.beispiel.de
Expand Down Expand Up @@ -154,5 +154,5 @@ See in [ruleset.yaml](ruleset.yaml) for an example.
<h1>My Custom Title</h1>
- position: .left-content article # Position where to inject the code into DOM
prepend: |
<h2>Suptitle</h2>
<h2>Subtitle</h2>
```
6 changes: 2 additions & 4 deletions handlers/form.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@

<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ladder</title>
<script src="https://cdn.tailwindcss.com"></script>
</head>
Expand All @@ -21,7 +22,7 @@ <h1 class="text-center text-3xl sm:text-4xl font-extrabold text-slate-900 tracki
<input type="text" id="inputField" placeholder="Proxy Search" name="inputField" class="w-full text-sm leading-6 text-slate-400 rounded-md ring-1 ring-slate-900/10 shadow-sm py-1.5 pl-2 pr-3 hover:ring-slate-300 dark:bg-slate-800 dark:highlight-white/5 dark:hover:bg-slate-700" required autofocus>
</div>
</form>
<footer class="mt-10 text-center text-slate-600 dark:text-slate-400">
<footer class="mt-10 text-center text-slate-600 dark:text-slate-400 mx-4">
<p>
Code Licensed Under GPL v3.0 |
<a href="https://github.com/everywall/ladder" class="hover:text-blue-500 hover:underline underline-offset-2 transition-colors duration-300">View Source</a> |
Expand All @@ -31,9 +32,6 @@ <h1 class="text-center text-3xl sm:text-4xl font-extrabold text-slate-900 tracki
</div>

<script>
document.addEventListener('DOMContentLoaded', function () {
M.AutoInit();
});
document.getElementById('inputForm').addEventListener('submit', function (e) {
e.preventDefault();
let url = document.getElementById('inputField').value;
Expand Down

0 comments on commit 11ee581

Please sign in to comment.