when telling somebody that permissions have changed but not yet submitted, give them a submit button *right there* so they don't have to look for it.
This commit is contained in:
@@ -1,4 +1,10 @@
|
||||
|
||||
function abook_perms_msg() {
|
||||
$('.abook-permschange').show();
|
||||
$('.abook-permschange').html(aStr['permschange']);
|
||||
$('.abook-permssave').show();
|
||||
}
|
||||
|
||||
$(document).ready(function() {
|
||||
if(typeof(after_following) !== 'undefined' && after_following)
|
||||
connectFullShare();
|
||||
@@ -8,13 +14,12 @@ $(document).ready(function() {
|
||||
});
|
||||
|
||||
$('.abook-edit-me').click(function() {
|
||||
$('.abook-permschange').show();
|
||||
$('.abook-permschange').html(aStr['permschange']);
|
||||
abook_perms_msg();
|
||||
});
|
||||
|
||||
|
||||
});
|
||||
|
||||
|
||||
function connectFullShare() {
|
||||
$('.abook-edit-me').each(function() {
|
||||
if(! $(this).is(':disabled'))
|
||||
@@ -34,9 +39,7 @@ function connectFullShare() {
|
||||
$('#me_id_perms_view_storage').attr('checked','checked');
|
||||
$('#me_id_perms_republish').attr('checked','checked');
|
||||
$('#me_id_perms_post_like').attr('checked','checked');
|
||||
|
||||
$('.abook-permschange').show();
|
||||
$('.abook-permschange').html(aStr['permschange']);
|
||||
abook_perms_msg();
|
||||
}
|
||||
|
||||
function connectCautiousShare() {
|
||||
@@ -54,8 +57,7 @@ function connectCautiousShare() {
|
||||
$('#me_id_perms_post_comments').attr('checked','checked');
|
||||
$('#me_id_perms_post_mail').attr('checked','checked');
|
||||
$('#me_id_perms_post_like').attr('checked','checked');
|
||||
$('.abook-permschange').show();
|
||||
$('.abook-permschange').html(aStr['permschange']);
|
||||
abook_perms_msg();
|
||||
|
||||
}
|
||||
|
||||
@@ -78,8 +80,7 @@ function connectForum() {
|
||||
$('#me_id_perms_tag_deliver').attr('checked','checked');
|
||||
$('#me_id_perms_republish').attr('checked','checked');
|
||||
$('#me_id_perms_post_like').attr('checked','checked');
|
||||
$('.abook-permschange').show();
|
||||
$('.abook-permschange').html(aStr['permschange']);
|
||||
abook_perms_msg();
|
||||
|
||||
}
|
||||
|
||||
@@ -88,8 +89,8 @@ function connectClear() {
|
||||
if(! $(this).is(':disabled'))
|
||||
$(this).removeAttr('checked');
|
||||
});
|
||||
$('.abook-permschange').show();
|
||||
$('.abook-permschange').html(aStr['permschange']);
|
||||
abook_perms_msg();
|
||||
|
||||
}
|
||||
|
||||
function connectSoapBox() {
|
||||
@@ -104,8 +105,8 @@ function connectSoapBox() {
|
||||
$('#me_id_perms_view_contacts').attr('checked','checked');
|
||||
$('#me_id_perms_view_storage').attr('checked','checked');
|
||||
$('#me_id_perms_view_pages').attr('checked','checked');
|
||||
$('.abook-permschange').show();
|
||||
$('.abook-permschange').html(aStr['permschange']);
|
||||
abook_perms_msg();
|
||||
|
||||
}
|
||||
|
||||
|
||||
@@ -116,8 +117,7 @@ function connectFollowOnly() {
|
||||
});
|
||||
|
||||
$('#me_id_perms_send_stream').attr('checked','checked');
|
||||
$('.abook-permschange').show();
|
||||
$('.abook-permschange').html(aStr['permschange']);
|
||||
abook_perms_msg();
|
||||
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user