aboutsummaryrefslogtreecommitdiffstats
path: root/view/jot-header.tpl
diff options
context:
space:
mode:
authorFabio Comuni <fabrix.xm@gmail.com>2012-03-28 10:49:34 +0200
committerFabio Comuni <fabrix.xm@gmail.com>2012-03-28 10:49:34 +0200
commit0a2675d8b698302e50cb64ce5793ab9d22dee329 (patch)
treeb593a82998112d55bacb726e6f7a468dac4a8a59 /view/jot-header.tpl
parent7aec2fd68d6cec75d14c02b63a150d904aae817e (diff)
downloadvolse-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-xview/jot-header.tpl39
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() {