quick-reply.js: activate only on index page

This commit is contained in:
czaks 2013-07-17 22:09:28 -04:00 committed by root
parent 84aaaabece
commit 95b49f2215

View File

@ -12,6 +12,7 @@
* *
*/ */
if (active_page == 'index') {
$(document).ready(function(){ $(document).ready(function(){
if($('div.banner').length != 0) if($('div.banner').length != 0)
return; // not index return; // not index
@ -43,4 +44,4 @@ $(document).ready(function(){
}); });
}); });
}); });
}