Add tab indexing to file upload form. Fixes #120

This commit is contained in:
Starbeamrainbowlabs 2016-11-20 09:41:23 +00:00
parent f07cd96691
commit 312de4b341
3 changed files with 12 additions and 12 deletions

View File

@ -2969,7 +2969,7 @@ class search
register_module([
"name" => "Uploader",
"version" => "0.5.7",
"version" => "0.5.8",
"author" => "Starbeamrainbowlabs",
"description" => "Adds the ability to upload files to Pepperminty Wiki. Uploaded files act as pages and have the special 'File/' prefix.",
"id" => "feature-upload",
@ -3027,15 +3027,15 @@ register_module([
<p>$settings->sitename currently supports uploading of the following file types: " . implode(", ", $settings->upload_allowed_file_types) . ".</p>
<form method='post' action='?action=upload' enctype='multipart/form-data'>
<label for='file'>Select a file to upload.</label>
<input type='file' name='file' id='file-upload-selector' />
<input type='file' name='file' id='file-upload-selector' tabindex='1' />
<br />
<label for='name'>Name:</label>
<input type='text' name='name' id='file-upload-name' />
<input type='text' name='name' id='file-upload-name' tabindex='5' />
<br />
<label for='description'>Description:</label>
<textarea name='description'></textarea>
<textarea name='description' tabindex='10'></textarea>
<p class='editing_message'>$settings->editing_message</p>
<input type='submit' value='Upload' />
<input type='submit' value='Upload' tabindex='20' />
</form>
<script>
document.getElementById('file-upload-selector').addEventListener('change', function() {

View File

@ -82,11 +82,11 @@
},
{
"name": "Uploader",
"version": "0.5.7",
"version": "0.5.8",
"author": "Starbeamrainbowlabs",
"description": "Adds the ability to upload files to Pepperminty Wiki. Uploaded files act as pages and have the special 'File\/' prefix.",
"id": "feature-upload",
"lastupdate": 1476906745,
"lastupdate": 1479634619,
"optional": false
},
{

View File

@ -1,7 +1,7 @@
<?php
register_module([
"name" => "Uploader",
"version" => "0.5.7",
"version" => "0.5.8",
"author" => "Starbeamrainbowlabs",
"description" => "Adds the ability to upload files to Pepperminty Wiki. Uploaded files act as pages and have the special 'File/' prefix.",
"id" => "feature-upload",
@ -59,15 +59,15 @@ register_module([
<p>$settings->sitename currently supports uploading of the following file types: " . implode(", ", $settings->upload_allowed_file_types) . ".</p>
<form method='post' action='?action=upload' enctype='multipart/form-data'>
<label for='file'>Select a file to upload.</label>
<input type='file' name='file' id='file-upload-selector' />
<input type='file' name='file' id='file-upload-selector' tabindex='1' />
<br />
<label for='name'>Name:</label>
<input type='text' name='name' id='file-upload-name' />
<input type='text' name='name' id='file-upload-name' tabindex='5' />
<br />
<label for='description'>Description:</label>
<textarea name='description'></textarea>
<textarea name='description' tabindex='10'></textarea>
<p class='editing_message'>$settings->editing_message</p>
<input type='submit' value='Upload' />
<input type='submit' value='Upload' tabindex='20' />
</form>
<script>
document.getElementById('file-upload-selector').addEventListener('change', function() {