1
0

end test and quotes error fix

This commit is contained in:
devenblake 2020-12-22 09:20:38 -05:00
parent f93e22b37a
commit 0338ed050d
2 changed files with 2 additions and 3 deletions

View File

@ -135,8 +135,7 @@ Any stylesheet from any on-line source will work.
</SMALL></P>
<INPUT ID="customSheet" TYPE="text" VALUE="custom" />
<INPUT ONCLICK="sheet = window.setStyling(document.getElementById('customSheet').value);" TYPE="button" VALUE="<-" />
<P><SMALL>Here are some cool <B>unsafe</B> external stylesheets if you'd like to live on the edge in comfort.</SMALL></P>
<INPUT ONCLICK="sheet = window.setStyling('//cdn.jwz.org/blog/wp-content/themes/jwz/style.css?ver=24');" TYPE="button" VALUE="jwz" />
<!-- <P><SMALL>Here are some cool <B>unsafe</B> external stylesheets if you'd like to live on the edge in comfort.</SMALL></P> coming soon -->
<P><SMALL>
The following button manipulates the site cookie. This setting is the only use of cookies anywhere on this website.
</SMALL></P>

View File

@ -59,5 +59,5 @@ window.genQuote = function() {
if(window.oldquote) window.quotes.push(window.oldquote);
document.getElementById('quote').textContent = '\"' + window.quote[0] + '\"';
document.getElementById('quoteauthor').textContent = '~ ' + window.quote[1];
document.getElementById('getaquote').setAttribute('value', 'Get another free quote today!');
// document.getElementById('getaquote').setAttribute('value', 'Get another free quote today!');
};