fix
This commit is contained in:
parent
cfe28f6f39
commit
fe572a76aa
@ -34,8 +34,13 @@ window.quote_new = function(){
|
||||
window.quotes.push(window.quote_old);
|
||||
|
||||
if(quote_text = document.getElementById(window.QUOTES_QUOTE_VALUE_ID))
|
||||
quote_text.textContent = window.QUOTES_L_QUOTE_MARK + window.quote[0] + R_QUOTE_MARK;
|
||||
quote_text.textContent =
|
||||
window.QUOTES_L_QUOTE_MARK
|
||||
+ window.quote[0]
|
||||
+ window.QUOTES_R_QUOTE_MARK;
|
||||
|
||||
if(quote_author = document.getElementById(window.QUOTES_QUOTE_AUTHOR_ID))
|
||||
quoteAuthorText.textContent = window.QUOTES_QUOTE_AUTHOR_PREFIX + window.quote[1];
|
||||
if(quote_author = document.getElementById(
|
||||
window.QUOTES_QUOTE_AUTHOR_ID))
|
||||
quoteAuthorText.textContent = window.QUOTES_QUOTE_AUTHOR_PREFIX
|
||||
+ window.quote[1];
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user