document -> d

This commit is contained in:
James Campos 2011-06-25 11:42:42 -07:00
parent 1834c1a7a7
commit e575be8d71
2 changed files with 4 additions and 4 deletions

View File

@ -2691,9 +2691,9 @@
$.bind(form, 'submit', qr.cb.submit);
}
if ($.config('Auto Noko')) {
document.cookie = "" + NAMESPACE + "auto_noko=true;path=/;domain=.4chan.org";
d.cookie = "" + NAMESPACE + "auto_noko=true;path=/;domain=.4chan.org";
} else {
document.cookie = "" + NAMESPACE + "auto_noko=false;path=/;domain=.4chan.org";
d.cookie = "" + NAMESPACE + "auto_noko=false;path=/;domain=.4chan.org";
}
if ($.config('Cooldown')) {
cooldown.init();

View File

@ -2103,9 +2103,9 @@ main =
#major features
if $.config 'Auto Noko'
document.cookie = "#{NAMESPACE}auto_noko=true;path=/;domain=.4chan.org"
d.cookie = "#{NAMESPACE}auto_noko=true;path=/;domain=.4chan.org"
else
document.cookie = "#{NAMESPACE}auto_noko=false;path=/;domain=.4chan.org"
d.cookie = "#{NAMESPACE}auto_noko=false;path=/;domain=.4chan.org"
if $.config 'Cooldown'
cooldown.init()