]> git.mxchange.org Git - friendica.git/blobdiff - view/theme/frio/templates/jot-header.tpl
[frio] Fix spacing in field_input.tpl
[friendica.git] / view / theme / frio / templates / jot-header.tpl
index 6aad9889d1a0822f7b5d94a46bada87282cf1277..81921598ab30fa40f4a6e26174411b9003c7b270 100644 (file)
@@ -1,5 +1,5 @@
 
-<script type="text/javascript" src="{{$baseurl}}/js/ajaxupload.js" ></script>
+<script type="text/javascript" src="{{$baseurl}}/view/js/ajaxupload.js" ></script>
 
 <script type="text/javascript">
        var editor = false;
                        .modal.show;
        }
 
-       // the following functions show/hide the specific jot content
-       // in dependence of the selected nav
-       function aclActive() {
-               $(".modal-body #profile-jot-wrapper, .modal-body #jot-preview-content, .modal-body #jot-fbrowser-wrapper").addClass("minimize");
-               $(".modal-body #profile-jot-acl-wrapper").removeClass("minimize");
-       }
-
-
-       function previewActive() {
-               $(".modal-body #profile-jot-wrapper, .modal-body #profile-jot-acl-wrapper,.modal-body #jot-fbrowser-wrapper").addClass("minimize");
-               var postPreview = preview_post();
-               if (postPreview && typeof postPreview !== "undefined") {
-                       $(".modal-body #jot-preview-content").removeClass("minimize");
-               }
-       }
-
+       // Activate the jot text section in the jot modal
        function jotActive() {
-               $(".modal-body #profile-jot-acl-wrapper, .modal-body #jot-preview-content, .modal-body #jot-fbrowser-wrapper").addClass("minimize");
-               $(".modal-body #profile-jot-wrapper").removeClass("minimize");
-
-               //make sure jot text does have really the active class (we do this because there are some
-               // other events which trigger jot text
-               toggleJotNav($("#jot-modal .jot-nav #jot-text-lnk"));
+               // Make sure jot text does have really the active class (we do this because there are some
+               // other events which trigger jot text (we need to do this for the desktop and mobile
+               // jot nav
+               var elem = $("#jot-modal .jot-nav #jot-text-lnk");
+               var elemMobile = $("#jot-modal .jot-nav #jot-text-lnk-mobile")
+               toggleJotNav(elem[0]);
+               toggleJotNav(elemMobile[0]);
        }
-
-       function fbrowserActive() {
-               $(".modal-body #profile-jot-wrapper, .modal-body #jot-preview-content, .modal-body #profile-jot-acl-wrapper").addClass("minimize");
-
-               $(".modal-body #jot-fbrowser-wrapper").removeClass("minimize");
-
-               $(function() {Dialog.showJot();});
-       }
-
-
 </script>
-