]> git.mxchange.org Git - friendica.git/blobdiff - view/theme/dispy-dark/jot-header.tpl
fix fpostJS, add and fix some other stuff
[friendica.git] / view / theme / dispy-dark / jot-header.tpl
index 4c8f59d7969bd2348ebbacf1d3daa26da4f6f4e2..5838729cc50c4431d6bb0eadf1b924da376152e8 100644 (file)
@@ -9,6 +9,7 @@ function initEditor(cb) {
                if(plaintext == 'none') {
                        $("#profile-jot-text-loading").hide();
                        $("#profile-jot-text").css({ 'height': 200, 'color': '#000' });
+                       $("#profile-jot-text").contact_autocomplete(baseurl+"/acl");
                        editor = true;
                        $("a#jot-perms-icon").fancybox({
                                'transitionIn' : 'elastic',
@@ -30,6 +31,7 @@ function initEditor(cb) {
                        theme_advanced_toolbar_location : "top",
                        theme_advanced_toolbar_align : "center",
                        theme_advanced_blockformats : "blockquote,code",
+                       gecko_spellcheck : true,
                        paste_text_sticky : true,
                        entity_encoding : "raw",
                        add_unload_trigger : false,
@@ -264,15 +266,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() {