]> git.mxchange.org Git - friendica.git/blobdiff - view/theme/dispy-dark/jot-header.tpl
filer: replace "file as" prompt with combobox opened in fancybox
[friendica.git] / view / theme / dispy-dark / jot-header.tpl
index 4c8f59d7969bd2348ebbacf1d3daa26da4f6f4e2..92eccf74012dcafc20ac1e89c2a6a76e53c69fd8 100644 (file)
@@ -264,17 +264,39 @@ 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() {
                $('#jot-coord').val('');
                $('#profile-nolocation-wrapper').hide();