Merge branch 'master' of github.com:aeosynth/4chan-x

This commit is contained in:
Nicolas Stepien 2011-06-25 20:24:10 +02:00
commit 9d91902758
2 changed files with 7 additions and 7 deletions

View File

@ -2689,9 +2689,9 @@
$.bind(form, 'submit', qr.cb.submit); $.bind(form, 'submit', qr.cb.submit);
} }
if ($.config('Auto Noko')) { if ($.config('Auto Noko')) {
d.cookie = "" + NAMESPACE + "auto_noko=true;path=/;domain=.4chan.org"; document.cookie = "" + NAMESPACE + "auto_noko;path=/;domain=.4chan.org";
} else { } else {
d.cookie = "" + NAMESPACE + "auto_noko=false;path=/;domain=.4chan.org"; document.cookie = "path=/;domain=.4chan.org";
} }
if ($.config('Cooldown')) { if ($.config('Cooldown')) {
cooldown.init(); cooldown.init();
@ -2928,8 +2928,7 @@
height: 120px;\ height: 120px;\
}\ }\
#qr.auto:not(:hover) > form {\ #qr.auto:not(:hover) > form {\
height: 0;\ display: none;\
overflow: hidden;\
}\ }\
/* http://stackoverflow.com/questions/2610497/change-an-inputs-html5-placeholder-color-with-css */\ /* http://stackoverflow.com/questions/2610497/change-an-inputs-html5-placeholder-color-with-css */\
#qr input::-webkit-input-placeholder {\ #qr input::-webkit-input-placeholder {\

View File

@ -2103,9 +2103,9 @@ main =
#major features #major features
if $.config 'Auto Noko' if $.config 'Auto Noko'
d.cookie = "#{NAMESPACE}auto_noko=true;path=/;domain=.4chan.org" document.cookie = "#{NAMESPACE}auto_noko;path=/;domain=.4chan.org"
else else
d.cookie = "#{NAMESPACE}auto_noko=false;path=/;domain=.4chan.org" document.cookie = "path=/;domain=.4chan.org"
if $.config 'Cooldown' if $.config 'Cooldown'
cooldown.init() cooldown.init()
@ -2329,7 +2329,8 @@ main =
height: 120px; height: 120px;
} }
#qr.auto:not(:hover) > form { #qr.auto:not(:hover) > form {
display: none; height: 0;
overflow: hidden;
} }
/* http://stackoverflow.com/questions/2610497/change-an-inputs-html5-placeholder-color-with-css */ /* http://stackoverflow.com/questions/2610497/change-an-inputs-html5-placeholder-color-with-css */
#qr input::-webkit-input-placeholder { #qr input::-webkit-input-placeholder {