diff options
author | marijus <mario@mariovavti.com> | 2014-04-03 17:03:32 +0200 |
---|---|---|
committer | marijus <mario@mariovavti.com> | 2014-04-03 17:03:32 +0200 |
commit | 3f1a78fa690e2220b46823527f3abf0a0d51cd8e (patch) | |
tree | 1b9784fd6dc8cb49fe4703781b60c3c502f77d1f /view/tpl/jot-header.tpl | |
parent | 98788308e156173cfc49c4477bf0d12dbda88662 (diff) | |
download | volse-hubzilla-3f1a78fa690e2220b46823527f3abf0a0d51cd8e.tar.gz volse-hubzilla-3f1a78fa690e2220b46823527f3abf0a0d51cd8e.tar.bz2 volse-hubzilla-3f1a78fa690e2220b46823527f3abf0a0d51cd8e.zip |
some work on jot, remove some deprecated js and some random style fixes
Diffstat (limited to 'view/tpl/jot-header.tpl')
-rwxr-xr-x | view/tpl/jot-header.tpl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/view/tpl/jot-header.tpl b/view/tpl/jot-header.tpl index 80421d552..6f5b84bbe 100755 --- a/view/tpl/jot-header.tpl +++ b/view/tpl/jot-header.tpl @@ -6,9 +6,9 @@ var plaintext = '{{$editselect}}'; function initEditor(cb){ if (editor==false){ - $("#profile-jot-text-loading").spin('small'); + $("#profile-jot-text-loading").spin('small').show(); if(plaintext == 'none') { - $("#profile-jot-text-loading").spin(false); + $("#profile-jot-text-loading").spin(false).hide(); $("#profile-jot-text").css({ 'height': 200, 'color': '#000' }); $("#profile-jot-text").contact_autocomplete(baseurl+"/acl"); editor = true; @@ -77,7 +77,7 @@ function initEditor(cb){ ed.onInit.add(function(ed) { ed.pasteAsPlainText = true; - $("#profile-jot-text-loading").spin(false); + $("#profile-jot-text-loading").spin(false).hide(); $(".jothidden").show(); if (typeof cb!="undefined") cb(); }); |