X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=view%2Ftheme%2Ffrio%2Fjs%2Ftheme.js;h=46cea59ba23c60ccefed8efad885d55ae210139d;hb=74bf3a4dc8cbcc46d9502ecc06246a5feb7d5971;hp=ad6308595cb3295fdf05a32e29d9dd324c7560c4;hpb=901efb0a0ec4440cc02cb8e8fa5f327b0257f5ea;p=friendica.git diff --git a/view/theme/frio/js/theme.js b/view/theme/frio/js/theme.js index ad6308595c..46cea59ba2 100644 --- a/view/theme/frio/js/theme.js +++ b/view/theme/frio/js/theme.js @@ -169,7 +169,7 @@ $(document).ready(function(){ } // move the "Save the search" button to the second navbar - $(".search-content-wrapper #search-save-form ").appendTo("#topbar-second > .container > #navbar-button"); + $(".search-content-wrapper #search-save").appendTo("#topbar-second > .container > #navbar-button"); // append the vcard-short-info to the second nav after passing the element // with .fn (vcard username). Use scrollspy to get the scroll position. @@ -454,11 +454,6 @@ function justifyPhotos() { }).on('jg.complete', function(e){ justifiedGalleryActive = false; }); } -function justifyPhotosAjax() { - justifiedGalleryActive = true; - $('#photo-album-contents').justifiedGallery('norewind').on('jg.complete', function(e){ justifiedGalleryActive = false; }); -} - // Load a js script to the html head. function loadScript(url, callback) { // Check if the script is already in the html head. @@ -483,18 +478,6 @@ function loadScript(url, callback) { head.appendChild(script); } -function random_digits(digits) { - var rn = ""; - var rnd = ""; - - for(var i = 0; i < digits; i++) { - var rn = Math.round(Math.random() * (9)); - rnd += rn; - } - - return rnd; -} - // Does we need a ? or a & to append values to a url function qOrAmp(url) { if(url.search('\\?') < 0) { @@ -504,17 +487,6 @@ function qOrAmp(url) { } } -function filter_replace(item) { - - return item.name; -} - -// current time in milliseconds, to send each request to make sure -// we 're not getting 304 response -function timeNow() { - return new Date().getTime(); -} - String.prototype.normalizeLink = function () { var ret = this.replace('https:', 'http:'); var ret = ret.replace('//www', '//');