Hi
With Confluence 5.8.8 we were used to have this
<script type="text/javascript">
jQuery(document).ready(function($)
{
AJS.bind('init.rte', function() {
AJS.$('#notifyWatchers').attr('checked', false);
});
});
</script>
within our Custom HTML to prevent the Watcher notification per default if a page has been changed. With Confluence 6.10.1 this isn't working anymore. Does anyone have an idea how we could get back again this functionality?
Thanks
Community moderators have prevented the ability to post new answers.
I have 6.10 and this Custom HTML works fine:
<script>
function disableWatchers() {
setTimeout(disableWatchers, 1000);
if ( $('#notifyWatchers').attr( "mz" ) != 1) {
setTimeout(function() {$('#notifyWatchers').removeAttr('checked');}, 1000);
$('#notifyWatchers').attr( "mz", 1);
}
}
disableWatchers();
</script>
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.