Skip to content

Commit c6a2ce3

Browse files
committed
Minor updates
1 parent 79b13c6 commit c6a2ce3

File tree

8 files changed

+72
-40
lines changed

8 files changed

+72
-40
lines changed

public/download.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -283,7 +283,7 @@ <h2 class="has-text-white mt-2 mb-3 is-size-1 is-size-3-mobile has-text-weight-b
283283
</script>
284284
<!--Script for vertical tabs-->
285285
<script>
286-
function openTab(evt, tabName) {
286+
function openTab(event, tabName) {
287287
// Declare all variables
288288
var i, tabcontent, tablinks;
289289

@@ -301,7 +301,7 @@ <h2 class="has-text-white mt-2 mb-3 is-size-1 is-size-3-mobile has-text-weight-b
301301

302302
// Show the current tab, and add an "active" class to the link that opened the tab
303303
document.getElementById(tabName).style.display = "block";
304-
evt.currentTarget.className += " is-active";
304+
event.currentTarget.className += " is-active";
305305
}
306306
</script>
307307

public/faq.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -286,7 +286,7 @@ <h2 class="has-text-white mt-2 mb-3 is-size-1 is-size-3-mobile has-text-weight-b
286286
</script>
287287
<!--Script for vertical tabs-->
288288
<script>
289-
function openTab(evt, tabName) {
289+
function openTab(event, tabName) {
290290
// Declare all variables
291291
var i, tabcontent, tablinks;
292292

@@ -304,7 +304,7 @@ <h2 class="has-text-white mt-2 mb-3 is-size-1 is-size-3-mobile has-text-weight-b
304304

305305
// Show the current tab, and add an "active" class to the link that opened the tab
306306
document.getElementById(tabName).style.display = "block";
307-
evt.currentTarget.className += " is-active";
307+
event.currentTarget.className += " is-active";
308308
}
309309
</script>
310310

public/imprint.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -270,7 +270,7 @@ <h2 class="has-text-white mt-2 mb-3 is-size-1 is-size-3-mobile has-text-weight-b
270270
</script>
271271
<!--Script for vertical tabs-->
272272
<script>
273-
function openTab(evt, tabName) {
273+
function openTab(event, tabName) {
274274
// Declare all variables
275275
var i, tabcontent, tablinks;
276276

@@ -288,7 +288,7 @@ <h2 class="has-text-white mt-2 mb-3 is-size-1 is-size-3-mobile has-text-weight-b
288288

289289
// Show the current tab, and add an "active" class to the link that opened the tab
290290
document.getElementById(tabName).style.display = "block";
291-
evt.currentTarget.className += " is-active";
291+
event.currentTarget.className += " is-active";
292292
}
293293
</script>
294294

public/index.html

Lines changed: 31 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -261,7 +261,8 @@ <h2 class="mt-2 mb-3 is-size-1 is-size-3-mobile has-text-weight-bold">Getting st
261261
</p>
262262
<h4>How to run the application:</h4>
263263
<ul>
264-
<li><a href="https://openandroidinstaller.org/download.html">Download</a> the AppImage, .exe or appropriate executable file for your OS. You might need to change
264+
<li><a href="https://openandroidinstaller.org/download.html">Download</a> the AppImage, .exe or appropriate
265+
executable file for your OS. You might need to change
265266
permissions to run the executable. (On Windows, also <a href="https://adb.clockworkmod.com/">install
266267
the Universal USB Drivers</a> and other
267268
potentially drivers needed for your device.)</li>
@@ -363,7 +364,7 @@ <h2 class="has-text-white mt-2 mb-3 is-size-1 is-size-3-mobile has-text-weight-b
363364
</div>
364365
</div>
365366
<div class="column is-two-thirds">
366-
<div id="user" class="tabcontent content p-4" style="display:block;">
367+
<div id="user" class="tabcontent content p-4" style="display:block">
367368
<h3 class="title is-3 is-spaced">
368369
<span class="icon-text">
369370
<span class="icon is-medium">
@@ -374,8 +375,12 @@ <h3 class="title is-3 is-spaced">
374375
</h3>
375376
<h4 class="subtitle is-5">Use the OpenAndroidInstaller and report a bug</h4>
376377
<ul>
377-
<li>Use the <a href="https://github.com/openandroidinstaller-dev/openandroidinstaller/issues" target="_blank">OpenAndroidInstaller issue tracker</a> to report bugs, request new devices or features.</li>
378-
<li>Use the <a href="https://github.com/openandroidinstaller-dev/openandroidinstaller-dev.github.io/issues" target="_blank">website issue tracker</a> to report bugs or typo.</li>
378+
<li>Use the <a href="https://github.com/openandroidinstaller-dev/openandroidinstaller/issues"
379+
target="_blank">OpenAndroidInstaller issue tracker</a> to report bugs, request new devices or
380+
features.</li>
381+
<li>Use the <a
382+
href="https://github.com/openandroidinstaller-dev/openandroidinstaller-dev.github.io/issues"
383+
target="_blank">website issue tracker</a> to report bugs or typo.</li>
379384
</ul>
380385
</div>
381386
<div id="developer" class="tabcontent content p-4">
@@ -388,16 +393,25 @@ <h3 class="title is-3 is-spaced">
388393
</span>
389394
</h3>
390395
<h4 class="subtitle is-5">Adding support for new devices</h4>
391-
<p>Support for devices is managed by config files that describe steps and metadata of the installation process.</p>
396+
<p>Support for devices is managed by config files that describe steps and metadata of the installation
397+
process.</p>
392398
<ul>
393-
<li><a href="https://github.com/openandroidinstaller-dev/openandroidinstaller#how-to-contribute-your-own-installation-configurations" target="_blank">How to contribute config files</a></li>
399+
<li><a
400+
href="https://github.com/openandroidinstaller-dev/openandroidinstaller#how-to-contribute-your-own-installation-configurations"
401+
target="_blank">How to contribute config files</a></li>
394402
</ul>
395403
<h4 class="subtitle is-5">Finding issues to fix</h4>
396-
<p>The source code is hosted on <a href="https://github.com/openandroidinstaller-dev/openandroidinstaller/" target="_blank">GitHub</a>. A number of the issues are marked with the
397-
<a href="https://github.com/openandroidinstaller-dev/openandroidinstaller/issues?q=is%3Aissue+is%3Aopen+label%3A%22good+first+issue%22" target="_blank">"good first issue"</a> label indicating
398-
they are suitable for someone new to the OpenAndroidInstaller code base.</p>
404+
<p>The source code is hosted on <a
405+
href="https://github.com/openandroidinstaller-dev/openandroidinstaller/" target="_blank">GitHub</a>.
406+
A number of the issues are marked with the
407+
<a href="https://github.com/openandroidinstaller-dev/openandroidinstaller/issues?q=is%3Aissue+is%3Aopen+label%3A%22good+first+issue%22"
408+
target="_blank">"good first issue"</a> label indicating
409+
they are suitable for someone new to the OpenAndroidInstaller code base.
410+
</p>
399411
<ul>
400-
<li><a href="https://github.com/openandroidinstaller-dev/openandroidinstaller#run-openandroidinstaller-for-development" target="_blank">Run the application for development</a></li>
412+
<li><a
413+
href="https://github.com/openandroidinstaller-dev/openandroidinstaller#run-openandroidinstaller-for-development"
414+
target="_blank">Run the application for development</a></li>
401415
</ul>
402416
</div>
403417
<div id="tester" class="tabcontent content p-4">
@@ -413,8 +427,9 @@ <h4 class="subtitle is-5">Test the installer</h4>
413427
<p>Often there are pre-releases or specific features that need testing. What you can do:</p>
414428
<ul>
415429
<li>Test the tool regularly with a spare device and check if everything still works</li>
416-
<li>Follow us on <a href="https://fosstodon.org/@openandroidinstaller" target="_blank">Mastodon</a> or <a href="https://twitter.com/OAInstaller" target="_blank">Twitter</a>
417-
and test new (pre-) releases and report issues.</li>
430+
<li>Follow us on <a href="https://fosstodon.org/@openandroidinstaller" target="_blank">Mastodon</a> or
431+
<a href="https://twitter.com/OAInstaller" target="_blank">Twitter</a>
432+
and test new (pre-) releases and report issues.</li>
418433
</ul>
419434
</div>
420435
<div id="sponsor" class="tabcontent content p-4">
@@ -430,7 +445,8 @@ <h4 class="subtitle is-5">Donate to the project</h4>
430445
<p>There are currently two ways to support the project financially</p>
431446
<ul>
432447
<li><a href="https://opencollective.com/openandroidinstaller" target="_blank">OpenCollective</a></li>
433-
<li><a href="https://github.com/sponsors/openandroidinstaller-dev" target="_blank">Github Sponsors</a></li>
448+
<li><a href="https://github.com/sponsors/openandroidinstaller-dev" target="_blank">Github Sponsors</a>
449+
</li>
434450
</ul>
435451
<p>If you want to use a different method, please contact us.</p>
436452
</div>
@@ -529,7 +545,7 @@ <h4 class="subtitle is-5">Donate to the project</h4>
529545
</script>
530546
<!--Script for vertical tabs-->
531547
<script>
532-
function openTab(evt, tabName) {
548+
function openTab(event, tabName) {
533549
// Declare all variables
534550
var i, tabcontent, tablinks;
535551

@@ -547,7 +563,7 @@ <h4 class="subtitle is-5">Donate to the project</h4>
547563

548564
// Show the current tab, and add an "active" class to the link that opened the tab
549565
document.getElementById(tabName).style.display = "block";
550-
evt.currentTarget.className += " is-active";
566+
event.currentTarget.className += " is-active";
551567
}
552568
</script>
553569

public/privacy.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -356,7 +356,7 @@ <h2 class="has-text-white mt-2 mb-3 is-size-1 is-size-3-mobile has-text-weight-b
356356
</script>
357357
<!--Script for vertical tabs-->
358358
<script>
359-
function openTab(evt, tabName) {
359+
function openTab(event, tabName) {
360360
// Declare all variables
361361
var i, tabcontent, tablinks;
362362

@@ -374,7 +374,7 @@ <h2 class="has-text-white mt-2 mb-3 is-size-1 is-size-3-mobile has-text-weight-b
374374

375375
// Show the current tab, and add an "active" class to the link that opened the tab
376376
document.getElementById(tabName).style.display = "block";
377-
evt.currentTarget.className += " is-active";
377+
event.currentTarget.className += " is-active";
378378
}
379379
</script>
380380

public/supported-devices.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -753,7 +753,7 @@ <h2 class="has-text-white mt-2 mb-3 is-size-1 is-size-3-mobile has-text-weight-b
753753
</script>
754754
<!--Script for vertical tabs-->
755755
<script>
756-
function openTab(evt, tabName) {
756+
function openTab(event, tabName) {
757757
// Declare all variables
758758
var i, tabcontent, tablinks;
759759

@@ -771,7 +771,7 @@ <h2 class="has-text-white mt-2 mb-3 is-size-1 is-size-3-mobile has-text-weight-b
771771

772772
// Show the current tab, and add an "active" class to the link that opened the tab
773773
document.getElementById(tabName).style.display = "block";
774-
evt.currentTarget.className += " is-active";
774+
event.currentTarget.className += " is-active";
775775
}
776776
</script>
777777

templates/base.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@
190190
</script>
191191
<!--Script for vertical tabs-->
192192
<script>
193-
function openTab(evt, tabName) {
193+
function openTab(event, tabName) {
194194
// Declare all variables
195195
var i, tabcontent, tablinks;
196196

@@ -208,7 +208,7 @@
208208

209209
// Show the current tab, and add an "active" class to the link that opened the tab
210210
document.getElementById(tabName).style.display = "block";
211-
evt.currentTarget.className += " is-active";
211+
event.currentTarget.className += " is-active";
212212
}
213213
</script>
214214

templates/index.html

Lines changed: 29 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,8 @@ <h2 class="mt-2 mb-3 is-size-1 is-size-3-mobile has-text-weight-bold">Getting st
161161
</p>
162162
<h4>How to run the application:</h4>
163163
<ul>
164-
<li><a href="https://openandroidinstaller.org/download.html">Download</a> the AppImage, .exe or appropriate executable file for your OS. You might need to change
164+
<li><a href="https://openandroidinstaller.org/download.html">Download</a> the AppImage, .exe or appropriate
165+
executable file for your OS. You might need to change
165166
permissions to run the executable. (On Windows, also <a href="https://adb.clockworkmod.com/">install
166167
the Universal USB Drivers</a> and other
167168
potentially drivers needed for your device.)</li>
@@ -263,7 +264,7 @@ <h2 class="has-text-white mt-2 mb-3 is-size-1 is-size-3-mobile has-text-weight-b
263264
</div>
264265
</div>
265266
<div class="column is-two-thirds">
266-
<div id="user" class="tabcontent content p-4" style="display:block;">
267+
<div id="user" class="tabcontent content p-4" style="display:block">
267268
<h3 class="title is-3 is-spaced">
268269
<span class="icon-text">
269270
<span class="icon is-medium">
@@ -274,8 +275,12 @@ <h3 class="title is-3 is-spaced">
274275
</h3>
275276
<h4 class="subtitle is-5">Use the OpenAndroidInstaller and report a bug</h4>
276277
<ul>
277-
<li>Use the <a href="https://github.com/openandroidinstaller-dev/openandroidinstaller/issues" target="_blank">OpenAndroidInstaller issue tracker</a> to report bugs, request new devices or features.</li>
278-
<li>Use the <a href="https://github.com/openandroidinstaller-dev/openandroidinstaller-dev.github.io/issues" target="_blank">website issue tracker</a> to report bugs or typo.</li>
278+
<li>Use the <a href="https://github.com/openandroidinstaller-dev/openandroidinstaller/issues"
279+
target="_blank">OpenAndroidInstaller issue tracker</a> to report bugs, request new devices or
280+
features.</li>
281+
<li>Use the <a
282+
href="https://github.com/openandroidinstaller-dev/openandroidinstaller-dev.github.io/issues"
283+
target="_blank">website issue tracker</a> to report bugs or typo.</li>
279284
</ul>
280285
</div>
281286
<div id="developer" class="tabcontent content p-4">
@@ -288,16 +293,25 @@ <h3 class="title is-3 is-spaced">
288293
</span>
289294
</h3>
290295
<h4 class="subtitle is-5">Adding support for new devices</h4>
291-
<p>Support for devices is managed by config files that describe steps and metadata of the installation process.</p>
296+
<p>Support for devices is managed by config files that describe steps and metadata of the installation
297+
process.</p>
292298
<ul>
293-
<li><a href="https://github.com/openandroidinstaller-dev/openandroidinstaller#how-to-contribute-your-own-installation-configurations" target="_blank">How to contribute config files</a></li>
299+
<li><a
300+
href="https://github.com/openandroidinstaller-dev/openandroidinstaller#how-to-contribute-your-own-installation-configurations"
301+
target="_blank">How to contribute config files</a></li>
294302
</ul>
295303
<h4 class="subtitle is-5">Finding issues to fix</h4>
296-
<p>The source code is hosted on <a href="https://github.com/openandroidinstaller-dev/openandroidinstaller/" target="_blank">GitHub</a>. A number of the issues are marked with the
297-
<a href="https://github.com/openandroidinstaller-dev/openandroidinstaller/issues?q=is%3Aissue+is%3Aopen+label%3A%22good+first+issue%22" target="_blank">"good first issue"</a> label indicating
298-
they are suitable for someone new to the OpenAndroidInstaller code base.</p>
304+
<p>The source code is hosted on <a
305+
href="https://github.com/openandroidinstaller-dev/openandroidinstaller/" target="_blank">GitHub</a>.
306+
A number of the issues are marked with the
307+
<a href="https://github.com/openandroidinstaller-dev/openandroidinstaller/issues?q=is%3Aissue+is%3Aopen+label%3A%22good+first+issue%22"
308+
target="_blank">"good first issue"</a> label indicating
309+
they are suitable for someone new to the OpenAndroidInstaller code base.
310+
</p>
299311
<ul>
300-
<li><a href="https://github.com/openandroidinstaller-dev/openandroidinstaller#run-openandroidinstaller-for-development" target="_blank">Run the application for development</a></li>
312+
<li><a
313+
href="https://github.com/openandroidinstaller-dev/openandroidinstaller#run-openandroidinstaller-for-development"
314+
target="_blank">Run the application for development</a></li>
301315
</ul>
302316
</div>
303317
<div id="tester" class="tabcontent content p-4">
@@ -313,8 +327,9 @@ <h4 class="subtitle is-5">Test the installer</h4>
313327
<p>Often there are pre-releases or specific features that need testing. What you can do:</p>
314328
<ul>
315329
<li>Test the tool regularly with a spare device and check if everything still works</li>
316-
<li>Follow us on <a href="https://fosstodon.org/@openandroidinstaller" target="_blank">Mastodon</a> or <a href="https://twitter.com/OAInstaller" target="_blank">Twitter</a>
317-
and test new (pre-) releases and report issues.</li>
330+
<li>Follow us on <a href="https://fosstodon.org/@openandroidinstaller" target="_blank">Mastodon</a> or
331+
<a href="https://twitter.com/OAInstaller" target="_blank">Twitter</a>
332+
and test new (pre-) releases and report issues.</li>
318333
</ul>
319334
</div>
320335
<div id="sponsor" class="tabcontent content p-4">
@@ -330,7 +345,8 @@ <h4 class="subtitle is-5">Donate to the project</h4>
330345
<p>There are currently two ways to support the project financially</p>
331346
<ul>
332347
<li><a href="https://opencollective.com/openandroidinstaller" target="_blank">OpenCollective</a></li>
333-
<li><a href="https://github.com/sponsors/openandroidinstaller-dev" target="_blank">Github Sponsors</a></li>
348+
<li><a href="https://github.com/sponsors/openandroidinstaller-dev" target="_blank">Github Sponsors</a>
349+
</li>
334350
</ul>
335351
<p>If you want to use a different method, please contact us.</p>
336352
</div>

0 commit comments

Comments
 (0)