don't wait for entire page to load before citing reply
This commit is contained in:
parent
65ad6bf063
commit
c51c59c20c
9
main.js
9
main.js
@ -103,7 +103,10 @@ function rememberStuff() {
|
|||||||
document.forms.post.name.value = localStorage.name;
|
document.forms.post.name.value = localStorage.name;
|
||||||
if(localStorage.email)
|
if(localStorage.email)
|
||||||
document.forms.post.email.value = localStorage.email;
|
document.forms.post.email.value = localStorage.email;
|
||||||
|
|
||||||
|
if (window.location.hash.indexOf('q') == 1)
|
||||||
|
citeReply(window.location.hash.substring(2));
|
||||||
|
|
||||||
if(sessionStorage.body) {
|
if(sessionStorage.body) {
|
||||||
saved = JSON.parse(sessionStorage.body);
|
saved = JSON.parse(sessionStorage.body);
|
||||||
if(get_cookie('serv')) {
|
if(get_cookie('serv')) {
|
||||||
@ -180,9 +183,7 @@ function init()
|
|||||||
document.forms.postcontrols.password.value = localStorage.password;
|
document.forms.postcontrols.password.value = localStorage.password;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (window.location.hash.indexOf('q') == 1)
|
if(window.location.hash.indexOf('q') != 1 && window.location.hash.substring(1))
|
||||||
citeReply(window.location.hash.substring(2));
|
|
||||||
else if (window.location.hash.substring(1))
|
|
||||||
highlightReply(window.location.hash.substring(1));
|
highlightReply(window.location.hash.substring(1));
|
||||||
|
|
||||||
init_expanding();
|
init_expanding();
|
||||||
|
@ -103,7 +103,10 @@ function rememberStuff() {
|
|||||||
document.forms.post.name.value = localStorage.name;
|
document.forms.post.name.value = localStorage.name;
|
||||||
if(localStorage.email)
|
if(localStorage.email)
|
||||||
document.forms.post.email.value = localStorage.email;
|
document.forms.post.email.value = localStorage.email;
|
||||||
|
|
||||||
|
if (window.location.hash.indexOf('q') == 1)
|
||||||
|
citeReply(window.location.hash.substring(2));
|
||||||
|
|
||||||
if(sessionStorage.body) {
|
if(sessionStorage.body) {
|
||||||
saved = JSON.parse(sessionStorage.body);
|
saved = JSON.parse(sessionStorage.body);
|
||||||
if(get_cookie('{config[cookies][js]}')) {
|
if(get_cookie('{config[cookies][js]}')) {
|
||||||
@ -180,9 +183,7 @@ function init()
|
|||||||
document.forms.postcontrols.password.value = localStorage.password;
|
document.forms.postcontrols.password.value = localStorage.password;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (window.location.hash.indexOf('q') == 1)
|
if(window.location.hash.indexOf('q') != 1 && window.location.hash.substring(1))
|
||||||
citeReply(window.location.hash.substring(2));
|
|
||||||
else if (window.location.hash.substring(1))
|
|
||||||
highlightReply(window.location.hash.substring(1));
|
highlightReply(window.location.hash.substring(1));
|
||||||
|
|
||||||
{config[inline_expanding]?init_expanding();}
|
{config[inline_expanding]?init_expanding();}
|
||||||
|
Loading…
Reference in New Issue
Block a user