aboutsummaryrefslogtreecommitdiffstats
path: root/view
diff options
context:
space:
mode:
authorSimon <simon@kisikew.org>2012-03-16 10:54:20 -0700
committerSimon <simon@kisikew.org>2012-03-16 10:54:20 -0700
commit1246a40ec22d1df7c0aa47d13690a65e868edaa4 (patch)
tree5525492fa6b53fc743e3f47d733157a9bf7f9681 /view
parent925b9c5b9ce83825f5003f88d3afbdcb620c28fc (diff)
parent90bb32ab7393687d46e198f94d181c830f881def (diff)
downloadvolse-hubzilla-1246a40ec22d1df7c0aa47d13690a65e868edaa4.tar.gz
volse-hubzilla-1246a40ec22d1df7c0aa47d13690a65e868edaa4.tar.bz2
volse-hubzilla-1246a40ec22d1df7c0aa47d13690a65e868edaa4.zip
Merge pull request #141 from CatoTH/master
Private messages - tabindex
Diffstat (limited to 'view')
-rwxr-xr-xview/msg-header.tpl6
-rwxr-xr-xview/prv_message.tpl6
2 files changed, 9 insertions, 3 deletions
diff --git a/view/msg-header.tpl b/view/msg-header.tpl
index b5c78345a..098333893 100755
--- a/view/msg-header.tpl
+++ b/view/msg-header.tpl
@@ -30,6 +30,12 @@ if(plaintext != 'none') {
setup : function(ed) {
ed.onInit.add(function(ed) {
ed.pasteAsPlainText = true;
+ var editorId = ed.editorId;
+ var textarea = $('#'+editorId);
+ if (typeof(textarea.attr('tabindex')) != "undefined") {
+ $('#'+editorId+'_ifr').attr('tabindex', textarea.attr('tabindex'));
+ textarea.attr('tabindex', null);
+ }
});
}
});
diff --git a/view/prv_message.tpl b/view/prv_message.tpl
index 4b904cbcd..2ce07ce6f 100755
--- a/view/prv_message.tpl
+++ b/view/prv_message.tpl
@@ -10,14 +10,14 @@ $parent
$select
<div id="prvmail-subject-label">$subject</div>
-<input type="text" size="64" maxlength="255" id="prvmail-subject" name="subject" value="$subjtxt" $readonly />
+<input type="text" size="64" maxlength="255" id="prvmail-subject" name="subject" value="$subjtxt" $readonly tabindex="11" />
<div id="prvmail-message-label">$yourmessage</div>
-<textarea rows="8" cols="72" class="prvmail-text" id="prvmail-text" name="body" >$text</textarea>
+<textarea rows="8" cols="72" class="prvmail-text" id="prvmail-text" name="body" tabindex="12">$text</textarea>
<div id="prvmail-submit-wrapper" >
- <input type="submit" id="prvmail-submit" name="submit" value="Submit" />
+ <input type="submit" id="prvmail-submit" name="submit" value="Submit" tabindex="13" />
<div id="prvmail-upload-wrapper" >
<div id="prvmail-upload" class="icon border camera" title="$upload" ></div>
</div>