]> git.mxchange.org Git - friendica.git/blobdiff - view/theme/frost-mobile/js/main.js
Merge pull request #2874 from Hypolite/bug/fix-pgettext-typo
[friendica.git] / view / theme / frost-mobile / js / main.js
index 1b63a489d69243ef445af8e3296cdb0aa5e7df7a..3ec2421df2f0a9888db6fc2b7efe1d2db08fa3e5 100644 (file)
@@ -13,7 +13,6 @@
                if($(listID).is(":visible")) {
                        $(listID).hide();
                        $(listID+"-wrapper").show();
-                       alert($(listID+"-wrapper").attr("id"));
                }
                else {
                        $(listID).show();
@@ -48,7 +47,7 @@
        $(function() {
                $.ajaxSetup({cache: false});
 
-               collapseHeight();
+               //collapseHeight();
 
                /* setup tooltips *//*
                $("a,.tt").each(function(){
                        if(livetime) {
                                clearTimeout(livetime);
                        }
-                       livetime = setTimeout(liveUpdate, 10000);
+                       livetime = setTimeout(liveUpdate, 5000);
                        return;
                }
                if(livetime != null)
                                $('body').css('cursor', 'auto');
                        }
                        /* autocomplete @nicknames */
-                       $(".comment-edit-form  textarea").contact_autocomplete(baseurl+"/acl");
+                       $(".comment-edit-form  textarea").editor_autocomplete(baseurl+"/acl");
 
                        // setup videos, since VideoJS won't take care of any loaded via AJAX
                        if(typeof videojs != 'undefined') videojs.autoSetup();
                        elemName = elems + ' ' + elemName;
                }
                $(elemName).each(function() {
-                       if($(this).height() > 350) {
-                               $('html').height($('html').height());
-                               $(this).divgrow({ initialHeight: 300, showBrackets: false, speed: 0 });
-                               $(this).addClass('divmore');
-                               $('html').height('auto');
-                       }
+                       $('html').height($('html').height());
+                       $(this).readmore({maxheight:350 , moreLink:'<a href="#" class="showmore">+ Show more</a>', lessLink:'<a href="#" class="showmore">+ Show less</a>'});
+                       $(this).addClass('divmore');
+                       $('html').height('auto');
                });
        }