2011-03-28 14:21:28 +00:00
|
|
|
function toggleChecks(formElem,masterElem) {
|
|
|
|
if (masterElem.checked) { checked=true; } else { checked=false; }
|
|
|
|
for(s=0; s<$('#'+formElem).raw().elements.length; s++) {
|
|
|
|
if ($('#'+formElem).raw().elements[s].type=="checkbox") {
|
|
|
|
$('#'+formElem).raw().elements[s].checked=checked;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//Lightbox stuff
|
2012-07-06 08:00:11 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* If loading from a thumbnail the lightbox is shown first with a "loading" screen
|
|
|
|
* while the full size image loads, then the html of the lightbox is replaced with the image.
|
|
|
|
*/
|
|
|
|
|
2011-03-28 14:21:28 +00:00
|
|
|
var lightbox = {
|
|
|
|
init: function (image, size) {
|
2012-06-18 08:00:14 +00:00
|
|
|
if(typeof(image)=='string') {
|
2012-07-06 08:00:11 +00:00
|
|
|
$('#lightbox').show().listen('click',lightbox.unbox).raw().innerHTML =
|
|
|
|
'<p size="7" style="color:gray;font-size:50px">Loading...<p>';
|
|
|
|
$('#curtain').show().listen('click',lightbox.unbox);
|
2012-06-18 08:00:14 +00:00
|
|
|
var src = image;
|
|
|
|
image = new Image();
|
2012-07-06 08:00:11 +00:00
|
|
|
image.onload = function() {
|
|
|
|
lightbox.box_async(image);
|
|
|
|
}
|
2012-06-18 08:00:14 +00:00
|
|
|
image.src = src;
|
|
|
|
}
|
2011-03-28 14:21:28 +00:00
|
|
|
if (image.naturalWidth === undefined) {
|
|
|
|
var tmp = document.createElement('img');
|
|
|
|
tmp.style.visibility = 'hidden';
|
|
|
|
tmp.src = image.src;
|
|
|
|
image.naturalWidth = tmp.width;
|
|
|
|
delete tmp;
|
|
|
|
}
|
|
|
|
if (image.naturalWidth > size) {
|
2012-06-18 08:00:14 +00:00
|
|
|
lightbox.box(image);
|
2011-03-28 14:21:28 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
box: function (image) {
|
2012-06-18 08:00:14 +00:00
|
|
|
var hasA = false;
|
|
|
|
if(image.parentNode != null && image.parentNode.tagName.toUpperCase() == 'A') {
|
|
|
|
hasA = true;
|
|
|
|
}
|
|
|
|
if(!hasA) {
|
2011-03-28 14:21:28 +00:00
|
|
|
$('#lightbox').show().listen('click',lightbox.unbox).raw().innerHTML = '<img src="' + image.src + '" />';
|
|
|
|
$('#curtain').show().listen('click',lightbox.unbox);
|
|
|
|
}
|
|
|
|
},
|
2012-07-06 08:00:11 +00:00
|
|
|
box_async: function (image) {
|
|
|
|
var hasA = false;
|
|
|
|
if(image.parentNode != null && image.parentNode.tagName.toUpperCase() == 'A') {
|
|
|
|
hasA = true;
|
|
|
|
}
|
|
|
|
if(!hasA) {
|
|
|
|
$('#lightbox').raw().innerHTML = '<img src="' + image.src + '" />';
|
|
|
|
}
|
|
|
|
},
|
2011-03-28 14:21:28 +00:00
|
|
|
unbox: function (data) {
|
|
|
|
$('#curtain').hide();
|
|
|
|
$('#lightbox').hide().raw().innerHTML = '';
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
/* Still some issues
|
|
|
|
function caps_check(e) {
|
|
|
|
if (e === undefined) {
|
|
|
|
e = window.event;
|
|
|
|
}
|
|
|
|
if (e.which === undefined) {
|
|
|
|
e.which = e.keyCode;
|
|
|
|
}
|
|
|
|
if (e.which > 47 && e.which < 58) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if ((e.which > 64 && e.which < 91 && !e.shiftKey) || (e.which > 96 && e.which < 123 && e.shiftKey)) {
|
|
|
|
$('#capslock').show();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
*/
|
|
|
|
|
|
|
|
function hexify(str) {
|
|
|
|
str = str.replace(/rgb\(|\)/g, "").split(",");
|
|
|
|
str[0] = parseInt(str[0], 10).toString(16).toLowerCase();
|
|
|
|
str[1] = parseInt(str[1], 10).toString(16).toLowerCase();
|
|
|
|
str[2] = parseInt(str[2], 10).toString(16).toLowerCase();
|
|
|
|
str[0] = (str[0].length == 1) ? '0' + str[0] : str[0];
|
|
|
|
str[1] = (str[1].length == 1) ? '0' + str[1] : str[1];
|
|
|
|
str[2] = (str[2].length == 1) ? '0' + str[2] : str[2];
|
|
|
|
return (str.join(""));
|
|
|
|
}
|
|
|
|
|
|
|
|
function resize(id) {
|
|
|
|
var textarea = document.getElementById(id);
|
|
|
|
if (textarea.scrollHeight > textarea.clientHeight) {
|
2011-08-09 21:03:28 +00:00
|
|
|
//textarea.style.overflowY = 'hidden';
|
|
|
|
textarea.style.height = Math.min(1000, textarea.scrollHeight + textarea.style.fontSize) + 'px';
|
2011-03-28 14:21:28 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//ZIP downloader stuff
|
|
|
|
function add_selection() {
|
|
|
|
var selected = $('#formats').raw().options[$('#formats').raw().selectedIndex];
|
|
|
|
if (selected.disabled === false) {
|
|
|
|
var listitem = document.createElement("li");
|
|
|
|
listitem.id = 'list' + selected.value;
|
|
|
|
listitem.innerHTML = ' <input type="hidden" name="list[]" value="'+selected.value+'" /> ' +
|
|
|
|
' <span style="float:left;">'+selected.innerHTML+'</span>' +
|
2013-02-09 08:01:01 +00:00
|
|
|
' <a href="#" onclick="remove_selection(\''+selected.value+'\');return false;" style="float:right;" class="brackets">X</a>' +
|
2011-03-28 14:21:28 +00:00
|
|
|
' <br style="clear:all;" />';
|
|
|
|
$('#list').raw().appendChild(listitem);
|
|
|
|
$('#opt' + selected.value).raw().disabled = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function remove_selection(index) {
|
|
|
|
$('#list' + index).remove();
|
|
|
|
$('#opt' + index).raw().disabled='';
|
|
|
|
}
|
|
|
|
|
|
|
|
function Stats(stat) {
|
|
|
|
ajax.get("ajax.php?action=stats&stat=" + stat);
|
|
|
|
}
|