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/jot-header.tpl | |
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/jot-header.tpl')
-rwxr-xr-x | view/jot-header.tpl | 39 |
1 files changed, 30 insertions, 9 deletions
diff --git a/view/jot-header.tpl b/view/jot-header.tpl index 99e3aa0ec..67e5eb681 100755 --- a/view/jot-header.tpl +++ b/view/jot-header.tpl @@ -264,15 +264,36 @@ function enableOnUser(){ } function itemFiler(id) { - reply = prompt("$fileas"); - 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; - } + + 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() { |