summaryrefslogtreecommitdiff
path: root/js
diff options
context:
space:
mode:
authorSarven Capadisli <csarven@status.net>2009-10-30 15:48:35 +0100
committerSarven Capadisli <csarven@status.net>2009-10-30 15:48:35 +0100
commit02240a890ff804bcbca33568cfc73a827265256c (patch)
treef3986f85a9064a88936544d27641959f34f4573e /js
parent4024a5ee65839d79d788d58b4fdd96893fe96360 (diff)
Only run the scripts if the user is logged in
Diffstat (limited to 'js')
-rw-r--r--js/util.js48
1 files changed, 26 insertions, 22 deletions
diff --git a/js/util.js b/js/util.js
index 10c7bb18e..3e8d244b7 100644
--- a/js/util.js
+++ b/js/util.js
@@ -17,37 +17,41 @@
*/
$(document).ready(function(){
- if ($('#'+SN.C.S.NoticeDataText).length) {
- if (maxLength > 0) {
- $('#'+SN.C.S.NoticeDataText).bind('keyup', function(e) {
+ if ($('body.user_in').length > 0) {
+ if ($('#'+SN.C.S.NoticeDataText).length) {
+ if (maxLength > 0) {
+ $('#'+SN.C.S.NoticeDataText).bind('keyup', function(e) {
+ SN.U.Counter();
+ });
+ // run once in case there's something in there
SN.U.Counter();
+ }
+
+ $('#'+SN.C.S.NoticeDataText).bind('keydown', function(e) {
+ SN.U.SubmitOnReturn(e, $('#'+SN.C.S.FormNotice));
});
- // run once in case there's something in there
- SN.U.Counter();
+
+ if($('body')[0].id != 'conversation') {
+ $('#'+SN.C.S.NoticeDataText).focus();
+ }
}
- $('#'+SN.C.S.NoticeDataText).bind('keydown', function(e) {
- SN.U.SubmitOnReturn(e, $('#'+SN.C.S.FormNotice));
- });
+ $('.form_user_subscribe').each(function() { SN.U.FormXHR($(this)); });
+ $('.form_user_unsubscribe').each(function() { SN.U.FormXHR($(this)); });
+ $('.form_favor').each(function() { SN.U.FormXHR($(this)); });
+ $('.form_disfavor').each(function() { SN.U.FormXHR($(this)); });
+ $('.form_group_join').each(function() { SN.U.FormXHR($(this)); });
+ $('.form_group_leave').each(function() { SN.U.FormXHR($(this)); });
+ $('.form_user_nudge').each(function() { SN.U.FormXHR($(this)); });
- if($('body')[0].id != 'conversation') {
- $('#'+SN.C.S.NoticeDataText).focus();
- }
- }
+ SN.U.FormNoticeXHR();
- $('.form_user_subscribe').each(function() { SN.U.FormXHR($(this)); });
- $('.form_user_unsubscribe').each(function() { SN.U.FormXHR($(this)); });
- $('.form_favor').each(function() { SN.U.FormXHR($(this)); });
- $('.form_disfavor').each(function() { SN.U.FormXHR($(this)); });
- $('.form_group_join').each(function() { SN.U.FormXHR($(this)); });
- $('.form_group_leave').each(function() { SN.U.FormXHR($(this)); });
- $('.form_user_nudge').each(function() { SN.U.FormXHR($(this)); });
+ SN.U.NoticeReply();
- SN.U.FormNoticeXHR();
+ SN.U.NoticeDataAttach();
+ }
- SN.U.NoticeReply();
SN.U.NoticeAttachments();
- SN.U.NoticeDataAttach();
});