Remove unused Javascript methods and functions
This commit is contained in:
parent
901efb0a0e
commit
082827b67e
3 changed files with 0 additions and 88 deletions
|
@ -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', '//');
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue