]> git.mxchange.org Git - friendica.git/commitdiff
Remove unused Javascript methods and functions
authorHypolite Petovan <hypolite@mrpetovan.com>
Sat, 24 Aug 2019 17:00:16 +0000 (13:00 -0400)
committerHypolite Petovan <hypolite@mrpetovan.com>
Sat, 24 Aug 2019 17:00:16 +0000 (13:00 -0400)
view/js/autocomplete.js
view/theme/frio/js/modal.js
view/theme/frio/js/theme.js

index 1ba8900c23cddae6028511b44be7cbe7b8d6af33..18deaa1d3052717a8ca027f5889dc7373327d906 100644 (file)
@@ -286,57 +286,6 @@ function string2bb(element) {
        };
 })( jQuery );
 
-(function( $ ) {
-       $.fn.contact_autocomplete = function(backend_url, typ, autosubmit, onselect) {
-               if(typeof typ === 'undefined') typ = '';
-               if(typeof autosubmit === 'undefined') autosubmit = false;
-
-               // Autocomplete contacts
-               contacts = {
-                       match: /(^)([^\n]+)$/,
-                       index: 2,
-                       search: function(term, callback) { contact_search(term, callback, backend_url, typ); },
-                       replace: basic_replace,
-                       template: contact_format,
-               };
-
-               this.attr('autocomplete','off');
-               var a = this.textcomplete([contacts], {className:'acpopup', zIndex:10000});
-
-               if(autosubmit)
-                       a.on('textComplete:select', function(e,value,strategy) { submit_form(this); });
-
-               if(typeof onselect !== 'undefined')
-                       a.on('textComplete:select', function(e, value, strategy) { onselect(value); });
-       };
-})( jQuery );
-
-
-(function( $ ) {
-       $.fn.name_autocomplete = function(backend_url, typ, autosubmit, onselect) {
-               if(typeof typ === 'undefined') typ = '';
-               if(typeof autosubmit === 'undefined') autosubmit = false;
-
-               // Autocomplete contacts
-               names = {
-                       match: /(^)([^\n]+)$/,
-                       index: 2,
-                       search: function(term, callback) { contact_search(term, callback, backend_url, typ); },
-                       replace: trim_replace,
-                       template: contact_format,
-               };
-
-               this.attr('autocomplete','off');
-               var a = this.textcomplete([names], {className:'acpopup', zIndex:10000});
-
-               if(autosubmit)
-                       a.on('textComplete:select', function(e,value,strategy) { submit_form(this); });
-
-               if(typeof onselect !== 'undefined')
-                       a.on('textComplete:select', function(e, value, strategy) { onselect(value); });
-       };
-})( jQuery );
-
 (function( $ ) {
        $.fn.bbco_autocomplete = function(type) {
 
index 9bca427779fcbc057e05aa5b81e4c84ea863d74e..f33988e13911120049d7064e7ec0aa151fe7fca8 100644 (file)
@@ -277,7 +277,6 @@ function editpost(url) {
        var modal = $('#jot-modal').modal();
        url = url + " #jot-sections";
 
-       //var rand_num = random_digits(12);
        $(".jot-nav .jot-perms-lnk").parent("li").addClass("hidden");
 
        // For editpost we load the modal html of "jot-sections" of the edit page. So we would have two jot forms in
@@ -326,14 +325,6 @@ function jotreset() {
                $("#profile-jot-form #jot-title-wrap").show();
                $("#profile-jot-form #jot-category-wrap").show();
 
-               // the following was commented out because it is needed anymore
-               // because we changed the behavior at an other place.
-       //              var rand_num = random_digits(12);
-       //              $('#jot-title, #jot-category, #profile-jot-text').val("");
-       //              $( "#profile-jot-form input[name='type']" ).val("wall");
-       //              $( "#profile-jot-form input[name='post_id']" ).val("");
-       //              $( "#profile-jot-form input[name='post_id_random']" ).val(rand_num);
-
                // Remove the "edit-jot" class so we can the standard behavior on close.
                $("#jot-modal.edit-jot").removeClass("edit-jot");
                $("#jot-modal-content").empty();
index ad6308595cb3295fdf05a32e29d9dd324c7560c4..2ab11e637ba8284843476b1f2f6d5a094427c96e 100644 (file)
@@ -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', '//');