comment_require_login.js 302 Bytes Edit Raw Blame History 1 2 3 4 5 6 7 8 (function($) { $(window).bind('userDataLoaded', function(event, data) { if (!data.login && $('meta[name="profile.allow_unauthenticated_comments"]').length <= 0) { $('.display-comment-form').unbind(); $('.display-comment-form').addClass('require-login-popup'); } }); })(jQuery);