diff options
author | marijus <mario@localhost.localdomain> | 2013-07-15 18:43:34 +0200 |
---|---|---|
committer | marijus <mario@localhost.localdomain> | 2013-07-15 18:43:34 +0200 |
commit | b536116791f8cb010157126f2e73f029a83ab5fb (patch) | |
tree | 4e9fda00eb692e3fc01767f6da5201c99d07cbf9 /view/tpl/jot-header.tpl | |
parent | f384695e3d0fe86b9a059ab4f289042bf17d2da2 (diff) | |
download | volse-hubzilla-b536116791f8cb010157126f2e73f029a83ab5fb.tar.gz volse-hubzilla-b536116791f8cb010157126f2e73f029a83ab5fb.tar.bz2 volse-hubzilla-b536116791f8cb010157126f2e73f029a83ab5fb.zip |
more spin.js porting
Diffstat (limited to 'view/tpl/jot-header.tpl')
-rwxr-xr-x | view/tpl/jot-header.tpl | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/view/tpl/jot-header.tpl b/view/tpl/jot-header.tpl index 3afc98737..260d742b3 100755 --- a/view/tpl/jot-header.tpl +++ b/view/tpl/jot-header.tpl @@ -123,10 +123,10 @@ function enableOnUser(){ 'wall-image-upload', { action: '{{$baseurl}}/wall_upload/{{$nickname}}', name: 'userfile', - onSubmit: function(file,ext) { $('#profile-rotator').show(); }, + onSubmit: function(file,ext) { $('#profile-rotator').spin('tiny'); }, onComplete: function(file,response) { addeditortext(response); - $('#profile-rotator').hide(); + $('#profile-rotator').spin(false); } } ); @@ -134,10 +134,10 @@ function enableOnUser(){ 'wall-file-upload', { action: '{{$baseurl}}/wall_attach/{{$nickname}}', name: 'userfile', - onSubmit: function(file,ext) { $('#profile-rotator').show(); }, + onSubmit: function(file,ext) { $('#profile-rotator').spin('tiny'); }, onComplete: function(file,response) { addeditortext(response); - $('#profile-rotator').hide(); + $('#profile-rotator').spin(false); } } ); @@ -167,10 +167,10 @@ function enableOnUser(){ reply = prompt("{{$linkurl}}"); if(reply && reply.length) { reply = bin2hex(reply); - $('#profile-rotator').show(); + $('#profile-rotator').spin('tiny'); $.get('{{$baseurl}}/parse_url?binurl=' + reply, function(data) { addeditortext(data); - $('#profile-rotator').hide(); + $('#profile-rotator').spin(false); }); } } @@ -224,12 +224,12 @@ function enableOnUser(){ event.preventDefault(); if(reply && reply.length) { reply = bin2hex(reply); - $('#profile-rotator').show(); + $('#profile-rotator').spin('tiny'); $.get('{{$baseurl}}/parse_url?binurl=' + reply, function(data) { if (!editor) $("#profile-jot-text").val(""); initEditor(function(){ addeditortext(data); - $('#profile-rotator').hide(); + $('#profile-rotator').spin(false); }); }); } |