aboutsummaryrefslogtreecommitdiffstats
path: root/view
diff options
context:
space:
mode:
authorgit-marijus <mario@mariovavti.com>2013-07-13 23:31:34 +0200
committergit-marijus <mario@mariovavti.com>2013-07-13 23:31:34 +0200
commit7e00a1662d0c56a97d64881da5ef4ba0c88e65e3 (patch)
treefddabdb3b006a0f56836e8b389ad48270834a656 /view
parent9cb151fe27463f6154e61f1cc01d13bd49ab6017 (diff)
downloadvolse-hubzilla-7e00a1662d0c56a97d64881da5ef4ba0c88e65e3.tar.gz
volse-hubzilla-7e00a1662d0c56a97d64881da5ef4ba0c88e65e3.tar.bz2
volse-hubzilla-7e00a1662d0c56a97d64881da5ef4ba0c88e65e3.zip
port jot to spin.js
Diffstat (limited to 'view')
-rwxr-xr-xview/tpl/jot-header.tpl6
1 files changed, 3 insertions, 3 deletions
diff --git a/view/tpl/jot-header.tpl b/view/tpl/jot-header.tpl
index 03a23ecc8..dfc707fb5 100755
--- a/view/tpl/jot-header.tpl
+++ b/view/tpl/jot-header.tpl
@@ -12,9 +12,9 @@ var plaintext = '{{$editselect}}';
function initEditor(cb){
if (editor==false){
- $("#profile-jot-text-loading").show();
+ $("#profile-jot-text-loading").spin('small');
if(plaintext == 'none') {
- $("#profile-jot-text-loading").hide();
+ $("#profile-jot-text-loading").spin(false);
$("#profile-jot-text").css({ 'height': 200, 'color': '#000' });
$("#profile-jot-text").contact_autocomplete(baseurl+"/acl");
editor = true;
@@ -83,7 +83,7 @@ function initEditor(cb){
ed.onInit.add(function(ed) {
ed.pasteAsPlainText = true;
- $("#profile-jot-text-loading").hide();
+ $("#profile-jot-text-loading").spin(false);
$(".jothidden").show();
if (typeof cb!="undefined") cb();
});