Separated actions that's particular to the notice stream pages into

its own function. It can be reused whenever the common behaviours
needs to be initialized.
This commit is contained in:
Sarven Capadisli 2009-11-11 18:20:58 +00:00
parent 686c2e5e06
commit b8b4d3d2f2

View File

@ -370,10 +370,10 @@ var SN = { // StatusNet
return false; return false;
}); });
} }
} },
};
$(document).ready(function(){ Init: {
Notices: function() {
if ($('body.user_in').length > 0) { if ($('body.user_in').length > 0) {
$('.'+SN.C.S.FormNotice).each(function() { $('.'+SN.C.S.FormNotice).each(function() {
SN.U.FormNoticeXHR($(this)); SN.U.FormNoticeXHR($(this));
@ -396,5 +396,13 @@ $(document).ready(function(){
} }
SN.U.NoticeAttachments(); SN.U.NoticeAttachments();
}
}
};
$(document).ready(function(){
if ($('#content .notices').length >0) {
SN.Init.Notices();
}
}); });