diff options
author | Fabio Comuni <fabrix.xm@gmail.com> | 2012-03-28 10:49:34 +0200 |
---|---|---|
committer | Fabio Comuni <fabrix.xm@gmail.com> | 2012-03-28 10:49:34 +0200 |
commit | 0a2675d8b698302e50cb64ce5793ab9d22dee329 (patch) | |
tree | b593a82998112d55bacb726e6f7a468dac4a8a59 /view/theme/testbubble | |
parent | 7aec2fd68d6cec75d14c02b63a150d904aae817e (diff) | |
download | volse-hubzilla-0a2675d8b698302e50cb64ce5793ab9d22dee329.tar.gz volse-hubzilla-0a2675d8b698302e50cb64ce5793ab9d22dee329.tar.bz2 volse-hubzilla-0a2675d8b698302e50cb64ce5793ab9d22dee329.zip |
filer: replace "file as" prompt with combobox opened in fancybox
Diffstat (limited to 'view/theme/testbubble')
-rwxr-xr-x | view/theme/testbubble/jot-header.tpl | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/view/theme/testbubble/jot-header.tpl b/view/theme/testbubble/jot-header.tpl index b44ea78fd..0d11da271 100755 --- a/view/theme/testbubble/jot-header.tpl +++ b/view/theme/testbubble/jot-header.tpl @@ -304,6 +304,41 @@ function initEditor(cb) { } } } + + function itemFiler(id) { + + var bordercolor = $("input").css("border-color"); + + $.get('filer/', function(data){ + $.fancybox(data); + $("#id_term").keypress(function(){ + $(this).css("border-color",bordercolor); + }) + $("#select_term").change(function(){ + $("#id_term").css("border-color",bordercolor); + }) + + $("#filer_save").click(function(e){ + e.preventDefault(); + reply = $("#id_term").val(); + if(reply && reply.length) { + commentBusy = true; + $('body').css('cursor', 'wait'); + $.get('filer/' + id + '?term=' + reply); + if(timer) clearTimeout(timer); + timer = setTimeout(NavUpdate,3000); + liking = 1; + $.fancybox.close(); + } else { + $("#id_term").css("border-color","#FF0000"); + } + return false; + }); + }); + + } + + function jotClearLocation() { $('#jot-coord').val(''); |