some jot tools structuring and styling

This commit is contained in:
marijus
2013-12-01 10:55:39 +01:00
parent d43118fdcf
commit 1ff69605be
3 changed files with 96 additions and 54 deletions

View File

@@ -18,6 +18,14 @@ function cmtBbClose(comment, id) {
$(document).ready(function() {
document.jotpermsunlock = 'icon-unlock';
document.jotpermslock = 'icon-lock';
if($('#jot-perms-icon').hasClass('lock'))
$('#jot-perms-icon').addClass('icon-lock');
if($('#jot-perms-icon').hasClass('unlock'))
$('#jot-perms-icon').addClass('icon-unlock');
$('.group-edit-icon').hover(
function() {
$(this).addClass('icon'); $(this).removeClass('iconspacer');},
@@ -68,4 +76,4 @@ $(document).ready(function(){
}
};
setInterval(function () {checkNotify();}, 10 * 1000);
});
});