Skip to content
This repository was archived by the owner on Jul 17, 2020. It is now read-only.

Commit e781f36

Browse files
author
Zirak
committed
fixed reference error in stat, it actually works now
1 parent af14151 commit e781f36

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

master.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6381,13 +6381,13 @@ function normalize_stats ( stats ) {
63816381

63826382
function calc_qa_ratio ( questions, answers ) {
63836383
//for teh lulz
6384-
if ( !questions && answer ) {
6384+
if ( !questions && answers ) {
63856385
return "H̸̡̪̯ͨ͊̽̅̾̎Ȩ̬̩̾͛ͪ̈́̀́͘ ̶̧̨̱̹̭̯ͧ̾ͬC̷̙̲̝͖ͭ̏ͥͮ͟Oͮ͏̮̪̝͍M̲̖͊̒ͪͩͬ̚̚͜Ȇ̴̟̟͙̞ͩ͌͝S̨̥̫͎̭ͯ̿̔̀ͅ";
63866386
}
6387-
else if ( !answer && questions ) {
6387+
else if ( !answers && questions ) {
63886388
return "TO͇̹̺ͅƝ̴ȳ̳ TH̘Ë͖́̉ ͠P̯͍̭O̚​N̐Y̡";
63896389
}
6390-
else if ( !answer && !questions ) {
6390+
else if ( !answers && !questions ) {
63916391
return 'http://i.imgur.com/F79hP.png';
63926392
}
63936393

master.min.js

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

source/plugins/stat.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -151,13 +151,13 @@ function normalize_stats ( stats ) {
151151

152152
function calc_qa_ratio ( questions, answers ) {
153153
//for teh lulz
154-
if ( !questions && answer ) {
154+
if ( !questions && answers ) {
155155
return "H̸̡̪̯ͨ͊̽̅̾̎Ȩ̬̩̾͛ͪ̈́̀́͘ ̶̧̨̱̹̭̯ͧ̾ͬC̷̙̲̝͖ͭ̏ͥͮ͟Oͮ͏̮̪̝͍M̲̖͊̒ͪͩͬ̚̚͜Ȇ̴̟̟͙̞ͩ͌͝S̨̥̫͎̭ͯ̿̔̀ͅ";
156156
}
157-
else if ( !answer && questions ) {
157+
else if ( !answers && questions ) {
158158
return "TO͇̹̺ͅƝ̴ȳ̳ TH̘Ë͖́̉ ͠P̯͍̭O̚​N̐Y̡";
159159
}
160-
else if ( !answer && !questions ) {
160+
else if ( !answers && !questions ) {
161161
return 'http://i.imgur.com/F79hP.png';
162162
}
163163

0 commit comments

Comments
 (0)