602 lines
19 KiB
JavaScript
602 lines
19 KiB
JavaScript
![]() |
/* jQuery reverseOrder
|
||
|
* Written by Corey H Maass for Arc90; (c) Arc90, Inc.
|
||
|
*/
|
||
|
(function($){$.fn.reverseOrder=function(){return this.each(function(){$(this).prependTo($(this).parent())})}})(jQuery);
|
||
|
/*
|
||
|
* jQuery Capslock 0.4
|
||
|
* Copyright (c) Arthur McLean
|
||
|
*/
|
||
|
(function($){$.fn.capslock=function(options){if(options)$.extend($.fn.capslock.defaults,options);this.each(function(){$(this).bind("caps_lock_on",$.fn.capslock.defaults.caps_lock_on);$(this).bind("caps_lock_off",$.fn.capslock.defaults.caps_lock_off);$(this).bind("caps_lock_undetermined",$.fn.capslock.defaults.caps_lock_undetermined);$(this).keypress(function(e){check_caps_lock(e)})});return this};function check_caps_lock(e){var ascii_code=e.which;var letter=String.fromCharCode(ascii_code);var upper=letter.toUpperCase();var lower=letter.toLowerCase();var shift_key=e.shiftKey;if(upper!==lower){if(letter===upper&&!shift_key){$(e.target).trigger("caps_lock_on")}else if(letter===lower&&!shift_key){$(e.target).trigger("caps_lock_off")}else if(letter===lower&&shift_key){$(e.target).trigger("caps_lock_on")}else if(letter===upper&&shift_key){if(navigator.platform.toLowerCase().indexOf("win")!==-1){$(e.target).trigger("caps_lock_off")}else{if(navigator.platform.toLowerCase().indexOf("mac")!==-1&&$.fn.capslock.defaults.mac_shift_hack){$(e.target).trigger("caps_lock_off")}else{$(e.target).trigger("caps_lock_undetermined")}}}else{$(e.target).trigger("caps_lock_undetermined")}}else{$(e.target).trigger("caps_lock_undetermined")}if($.fn.capslock.defaults.debug){if(console){console.log("Ascii code: "+ascii_code);console.log("Letter: "+letter);console.log("Upper Case: "+upper);console.log("Shift key: "+shift_key)}}}$.fn.capslock.defaults={caps_lock_on:function(){},caps_lock_off:function(){},caps_lock_undetermined:function(){},mac_shift_hack:true,debug:false}})(jQuery);
|
||
|
|
||
|
/*
|
||
|
* GetSimple js file
|
||
|
*/
|
||
|
function updateCoords(c) {
|
||
|
$('#handw').show();
|
||
|
$('#x').val(c.x);
|
||
|
$('#y').val(c.y);
|
||
|
$('#w').val(c.w);
|
||
|
$('#h').val(c.h);
|
||
|
$('#pich').html(c.h);
|
||
|
$('#picw').html(c.w);
|
||
|
};
|
||
|
var Debugger = function () {}
|
||
|
Debugger.log = function (message) {
|
||
|
try {
|
||
|
console.log(message);
|
||
|
} catch (exception) {
|
||
|
return;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
/*
|
||
|
* popit
|
||
|
* element attention blink
|
||
|
* ensures occurs only once
|
||
|
*/
|
||
|
$.fn.popit = function ($speed) {
|
||
|
$speed = $speed || 500;
|
||
|
$(this).each(function () {
|
||
|
if ($(this).data('popped') != true) {
|
||
|
$(this).fadeOut($speed).fadeIn($speed);
|
||
|
$(this).data('popped', true);
|
||
|
}
|
||
|
});
|
||
|
return $(this);
|
||
|
}
|
||
|
|
||
|
/*
|
||
|
* closeit
|
||
|
* fadeout close on delay
|
||
|
*/
|
||
|
$.fn.removeit = function ($delay) {
|
||
|
$delay = $delay || 5000;
|
||
|
$(this).each(function () {
|
||
|
$(this).delay($delay).fadeOut(500);
|
||
|
});
|
||
|
return $(this);
|
||
|
}
|
||
|
|
||
|
function notifyOk($msg) {
|
||
|
return notify($msg, 'ok');
|
||
|
}
|
||
|
|
||
|
function notifyWarn($msg) {
|
||
|
return notify($msg, 'warning');
|
||
|
}
|
||
|
|
||
|
function notifyInfo($msg) {
|
||
|
return notify($msg, 'info');
|
||
|
}
|
||
|
|
||
|
function notifyError($msg) {
|
||
|
return notify($msg, 'error');
|
||
|
}
|
||
|
|
||
|
function notify($msg, $type) {
|
||
|
if ($type == 'ok' || $type == 'warning' || $type == 'info' || $type == 'error') {
|
||
|
var $notify = $('<div class="notify notify_' + $type + '"><p>' + $msg + '</p></div>');
|
||
|
$('div.bodycontent').before($notify);
|
||
|
return $notify;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
function clearNotify() {
|
||
|
$('div.wrapper .notify').remove();
|
||
|
}
|
||
|
|
||
|
basename = function(str){
|
||
|
return str.substring(0,str.lastIndexOf('/') );
|
||
|
}
|
||
|
|
||
|
|
||
|
function i18n(key){
|
||
|
return GS.i18n[key];
|
||
|
}
|
||
|
|
||
|
function checkCoords() {
|
||
|
if (parseInt($('#x').val())) return true;
|
||
|
alert('Please select a crop region then press submit.');
|
||
|
return false;
|
||
|
};
|
||
|
|
||
|
jQuery(document).ready(function () {
|
||
|
|
||
|
var loadingAjaxIndicator = $('#loader');
|
||
|
|
||
|
/* Listener for filter dropdown */
|
||
|
function attachFilterChangeEvent() {
|
||
|
$(document).on('change', "#imageFilter", function () {
|
||
|
Debugger.log('attachFilterChangeEvent');
|
||
|
loadingAjaxIndicator.show();
|
||
|
var filterx = $(this).val();
|
||
|
$("#imageTable").find("tr").hide();
|
||
|
if (filterx == 'Images') {
|
||
|
$("#imageTable").find("tr .imgthumb").show();
|
||
|
} else {
|
||
|
$("#imageTable").find("tr .imgthumb").hide();
|
||
|
}
|
||
|
$("#filetypetoggle").html(' / ' + filterx);
|
||
|
$("#imageTable").find("tr." + filterx).show();
|
||
|
$("#imageTable").find("tr.folder").show();
|
||
|
$("#imageTable").find("tr:first-child").show();
|
||
|
$("#imageTable").find("tr.deletedrow").hide();
|
||
|
loadingAjaxIndicator.fadeOut(500);
|
||
|
});
|
||
|
}
|
||
|
|
||
|
//upload.php
|
||
|
attachFilterChangeEvent();
|
||
|
|
||
|
//image.php
|
||
|
var copyKitTextArea = $('textarea.copykit');
|
||
|
$("select#img-info").change(function () {
|
||
|
var codetype = $(this).val();
|
||
|
var code = $('p#' + codetype).html();
|
||
|
var originalBG = $('textarea.copykit').css('background-color');
|
||
|
var fadeColor = "#FFFFD1";
|
||
|
copyKitTextArea.fadeOut(500).fadeIn(500).html(code);
|
||
|
});
|
||
|
$(".select-all").live("click", function () {
|
||
|
copyKitTextArea.focus().select();
|
||
|
return false;
|
||
|
});
|
||
|
|
||
|
|
||
|
//autofocus index.php & resetpassword.php fields on pageload
|
||
|
$("#index input#userid").focus();
|
||
|
$("#resetpassword input[name='username']").focus();
|
||
|
var options = {
|
||
|
caps_lock_on: function () {
|
||
|
$(this).addClass('capslock');
|
||
|
},
|
||
|
caps_lock_off: function () {
|
||
|
$(this).removeClass('capslock');
|
||
|
},
|
||
|
caps_lock_undetermined: function () {
|
||
|
$(this).removeClass('capslock');
|
||
|
}
|
||
|
};
|
||
|
|
||
|
$("input[type='password']").capslock(options);
|
||
|
|
||
|
|
||
|
// components.php
|
||
|
|
||
|
function focusCompEditor(selector){
|
||
|
var editor = $(selector + ' textarea');
|
||
|
editor.focus();
|
||
|
}
|
||
|
|
||
|
// auto focus component editors
|
||
|
$('#components div.compdivlist a').on('click', function(ev){
|
||
|
focusCompEditor($(this).attr('href'));
|
||
|
e.preventDefault();
|
||
|
});
|
||
|
|
||
|
$(".delconfirmcomp").live("click", function ($e) {
|
||
|
$e.preventDefault();
|
||
|
loadingAjaxIndicator.show();
|
||
|
var message = $(this).attr("title");
|
||
|
var answer = confirm(message);
|
||
|
if (answer) {
|
||
|
var compid = $(this).attr("rel");
|
||
|
$(compid).slideToggle(500).remove();
|
||
|
}
|
||
|
loadingAjaxIndicator.fadeOut(500);
|
||
|
});
|
||
|
$("#addcomponent").live("click", function ($e) {
|
||
|
$e.preventDefault();
|
||
|
loadingAjaxIndicator.show();
|
||
|
var id = $("#id").val();
|
||
|
$("#divTxt").prepend('<div style="display:none;" class="compdiv" id="section-' + id + '"><table class="comptable"><tr><td><b>Title: </b><input type="text" class="text newtitle" name="title[]" value="" /></td><td class="delete"><a href="#" title="Delete Component:?" class="delcomponent" id="del-' + id + '" rel="' + id + '" >×</a></td></tr></table><textarea name="val[]"></textarea><input type="hidden" name="slug[]" value="" /><input type="hidden" name="id[]" value="' + id + '" /><div>');
|
||
|
$("#section-" + id).slideToggle('fast');
|
||
|
id = (id - 1) + 2;
|
||
|
$("#id").val(id);
|
||
|
loadingAjaxIndicator.fadeOut(500);
|
||
|
$('#submit_line').fadeIn();
|
||
|
$("#divTxt").find('input').get(0).focus();
|
||
|
});
|
||
|
$('.delcomponent').live("click", function ($e) {
|
||
|
$e.preventDefault();
|
||
|
var message = $(this).attr("title");
|
||
|
var compid = $(this).attr("rel");
|
||
|
var answer = confirm(message);
|
||
|
if (answer) {
|
||
|
loadingAjaxIndicator.show();
|
||
|
var myparent = $(this).parents('.compdiv');
|
||
|
myparent.slideUp('fast', function () {
|
||
|
if ($("#divlist-" + compid).length) {
|
||
|
$("#divlist-" + compid).remove();
|
||
|
}
|
||
|
myparent.remove();
|
||
|
});
|
||
|
loadingAjaxIndicator.fadeOut(1000);
|
||
|
}
|
||
|
|
||
|
});
|
||
|
$("b.editable").dblclick(function () {
|
||
|
var t = $(this).html();
|
||
|
$(this).parents('.compdiv').find("input.comptitle").hide();
|
||
|
$(this).after('<div id="changetitle"><b>Title: </b><input class="text newtitle titlesaver" name="title[]" value="' + t + '" /></div>');
|
||
|
$(this).next('#changetitle').children('input').focus();
|
||
|
$(this).parents('.compdiv').find("input.compslug").val('');
|
||
|
$(this).hide();
|
||
|
});
|
||
|
$("input.titlesaver").live("keyup", function () {
|
||
|
var myval = $(this).val();
|
||
|
$(this).parents('.compdiv').find(".compslugcode").html("'" + myval.toLowerCase() + "'");
|
||
|
$(this).parents('.compdiv').find("b.editable").html(myval);
|
||
|
}).live("focusout", function () {
|
||
|
var myval = $(this).val();
|
||
|
$(this).parents('.compdiv').find(".compslugcode").html("'" + myval.toLowerCase() + "'");
|
||
|
$(this).parents('.compdiv').find("b.editable").html(myval);
|
||
|
$(this).parents('.compdiv').find("input.comptitle").val(myval);
|
||
|
$("b.editable").show();
|
||
|
$('#changetitle').remove();
|
||
|
});
|
||
|
|
||
|
|
||
|
// other general functions
|
||
|
$(".snav a.current").live("click", function ($e) {
|
||
|
$e.preventDefault();
|
||
|
});
|
||
|
$(".confirmation").live("click", function ($e) {
|
||
|
loadingAjaxIndicator.show();
|
||
|
var message = $(this).attr("title");
|
||
|
var answer = confirm(message);
|
||
|
if (!answer) {
|
||
|
loadingAjaxIndicator.fadeOut(500);
|
||
|
return false;
|
||
|
}
|
||
|
loadingAjaxIndicator.fadeOut(500);
|
||
|
});
|
||
|
$(".delconfirm").live("click", function () {
|
||
|
var message = $(this).attr("title");
|
||
|
var dlink = $(this).attr("href");
|
||
|
var mytr = $(this).parents("tr");
|
||
|
mytr.css("font-style", "italic");
|
||
|
var answer = confirm(message);
|
||
|
if (answer) {
|
||
|
if (!$(this).hasClass('noajax')) {
|
||
|
loadingAjaxIndicator.show();
|
||
|
mytr.addClass('deletedrow');
|
||
|
mytr.fadeOut(500, function () {
|
||
|
$.ajax({
|
||
|
type: "GET",
|
||
|
url: dlink,
|
||
|
success: function (response) {
|
||
|
mytr.remove();
|
||
|
if ($("#pg_counter").length) {
|
||
|
counter = $("#pg_counter").html();
|
||
|
$("#pg_counter").html(counter - 1);
|
||
|
}
|
||
|
|
||
|
$('div.wrapper .updated').remove();
|
||
|
$('div.wrapper .error').remove();
|
||
|
if ($(response).find('div.error').html()) {
|
||
|
$('div.bodycontent').before('<div class="error"><p>' + $(response).find('div.error').html() + '</p></div>');
|
||
|
popAlertMsg();
|
||
|
}
|
||
|
if ($(response).find('div.updated').html()) {
|
||
|
$('div.bodycontent').before('<div class="updated"><p>' + $(response).find('div.updated').html() + '</p></div>');
|
||
|
popAlertMsg();
|
||
|
}
|
||
|
}
|
||
|
});
|
||
|
loadingAjaxIndicator.fadeOut(500);
|
||
|
});
|
||
|
return false;
|
||
|
}
|
||
|
} else {
|
||
|
mytr.css('font-style', 'normal');
|
||
|
return false;
|
||
|
}
|
||
|
});
|
||
|
$("#waittrigger").click(function () {
|
||
|
loadingAjaxIndicator.fadeIn();
|
||
|
$("#waiting").fadeIn(1000).fadeOut(1000).fadeIn(1000).fadeOut(1000).fadeIn(1000).fadeOut(1000).fadeIn(1000);
|
||
|
});
|
||
|
|
||
|
|
||
|
/* Notifications */
|
||
|
|
||
|
/*
|
||
|
notifyError('This is an ERROR notification');
|
||
|
notifyOk('This is an OK notification');
|
||
|
notifyWarn('This is an WARNING notification');
|
||
|
notifyInfo('This is an INFO notification');
|
||
|
notify('message','msgtype');
|
||
|
notifyError('This notification blinks and autocloses').popit(ms speed).closeit(ms delay);
|
||
|
*/
|
||
|
|
||
|
function popAlertMsg() {
|
||
|
/* legacy, see jquery extend popit() and closeit() */
|
||
|
$(".updated").fadeOut(500).fadeIn(500);
|
||
|
$(".error").fadeOut(500).fadeIn(500);
|
||
|
|
||
|
$(".notify").popit(); // allows legacy use
|
||
|
}
|
||
|
|
||
|
popAlertMsg();
|
||
|
|
||
|
if (jQuery().fancybox) {
|
||
|
$('a[rel*=facybox]').fancybox({
|
||
|
type: 'ajax',
|
||
|
padding: 0,
|
||
|
scrolling: 'auto'
|
||
|
});
|
||
|
$('a[rel*=facybox_i]').fancybox();
|
||
|
$('a[rel*=facybox_s]').fancybox({
|
||
|
type: 'ajax',
|
||
|
padding: 0,
|
||
|
scrolling: 'no'
|
||
|
}).on('click',function(e){e.preventDefault();});
|
||
|
}
|
||
|
|
||
|
//plugins.php
|
||
|
$(".toggleEnable").live("click", function ($e) {
|
||
|
$e.preventDefault();
|
||
|
|
||
|
var loadingAjaxIndicator = $('#loader');
|
||
|
document.body.style.cursor = "wait";
|
||
|
loadingAjaxIndicator.show();
|
||
|
|
||
|
var message = $(this).attr("title");
|
||
|
var dlink = $(this).attr("href");
|
||
|
var mytd = $(this).parents("td");
|
||
|
var mytr = $(this).parents("tr");
|
||
|
|
||
|
mytd.html('');
|
||
|
mytd.addClass('ajaxwait ajaxwait_dark ajaxwait_tint_dark');
|
||
|
$('.toggleEnable').addClass('disabled');
|
||
|
|
||
|
$.ajax({
|
||
|
type: "GET",
|
||
|
dataType: "html",
|
||
|
url: dlink,
|
||
|
success: function (data, textStatus, jqXHR) {
|
||
|
// Store the response as specified by the jqXHR object
|
||
|
responseText = jqXHR.responseText;
|
||
|
|
||
|
// remove scripts to prevent assets from loading when we create temp dom
|
||
|
rscript = /<script\b[^<]*(?:(?!<\/script>)<[^<]*)*<\/script>/gi;
|
||
|
|
||
|
// create temp doms to reliably find elements
|
||
|
$('#header').html($("<div>").append(responseText.replace(rscript, "")).find('#header > *'));
|
||
|
$('#sidebar').html($("<div>").append(responseText.replace(rscript, "")).find('#sidebar > *'));
|
||
|
$('#maincontent').html($("<div>").append(responseText.replace(rscript, "")).find('#maincontent > *'));
|
||
|
|
||
|
document.body.style.cursor = "default";
|
||
|
clearNotify();
|
||
|
notifyOk(i18n('PLUGIN_UPDATED')).popit().removeit();
|
||
|
},
|
||
|
error: function (data, textStatus, jqXHR) {
|
||
|
// These go in failures if we catch them in the future
|
||
|
document.body.style.cursor = "default";
|
||
|
mytd.removeClass('ajaxwait ajaxwait_dark ajaxwait_tint_dark');
|
||
|
$('.toggleEnable').removeClass('disabled');
|
||
|
loadingAjaxIndicator.fadeOut();
|
||
|
|
||
|
clearNotify();
|
||
|
notifyError(i18n('ERROR'));
|
||
|
}
|
||
|
|
||
|
});
|
||
|
});
|
||
|
|
||
|
// edit.php
|
||
|
function updateMetaDescriptionCounter() {
|
||
|
var remaining = 155 - jQuery('#post-metad').val().length;
|
||
|
jQuery('#countdown').text(remaining);
|
||
|
// Debugger.log('Meta Description has ' + remaining + ' characters remaining');
|
||
|
}
|
||
|
if ($('#post-metad').length) {
|
||
|
updateMetaDescriptionCounter();
|
||
|
$('#post-metad').change(updateMetaDescriptionCounter);
|
||
|
$('#post-metad').keyup(updateMetaDescriptionCounter);
|
||
|
}
|
||
|
if ($("#edit input#post-title:empty").val() == '') {
|
||
|
$("#edit input#post-title").focus();
|
||
|
}
|
||
|
$("#metadata_toggle").live("click", function ($e) {
|
||
|
$e.preventDefault();
|
||
|
$("#metadata_window").slideToggle('fast');
|
||
|
$(this).toggleClass('current');
|
||
|
});
|
||
|
|
||
|
var privateLabel = $("#post-private-wrap label");
|
||
|
$("#post-private").change(function () {
|
||
|
if ($(this).val() == "Y") {
|
||
|
privateLabel.css("color", '#cc0000');
|
||
|
} else {
|
||
|
privateLabel.css("color", '#333333');
|
||
|
}
|
||
|
});
|
||
|
if ($("#post-private").val() == "Y") {
|
||
|
privateLabel.css("color", '#cc0000');
|
||
|
} else {
|
||
|
privateLabel.css("color", '#333333');
|
||
|
}
|
||
|
$("#post-menu-enable").live("click", function () {
|
||
|
$("#menu-items").slideToggle("fast");
|
||
|
});
|
||
|
if ($("#post-menu-enable").is(":checked")) {} else {
|
||
|
$("#menu-items").css("display", "none");
|
||
|
}
|
||
|
|
||
|
var edit_line = $('#submit_line span').html();
|
||
|
$('#js_submit_line').html(edit_line);
|
||
|
$("#js_submit_line input.submit").live("click", function () {
|
||
|
$("#submit_line input.submit").trigger('click');
|
||
|
});
|
||
|
$("#save-close a").live("click", function ($e) {
|
||
|
$e.preventDefault();
|
||
|
$('input[name=redirectto]').val('pages.php');
|
||
|
$("#submit_line input.submit").trigger('click');
|
||
|
});
|
||
|
|
||
|
|
||
|
// pages.php
|
||
|
$("#show-characters").live("click", function () {
|
||
|
$(this).hasClass('current') ? $(".showstatus").hide() : $(".showstatus").show() ;
|
||
|
$(this).toggleClass('current');
|
||
|
});
|
||
|
|
||
|
|
||
|
// log.php
|
||
|
if (jQuery().reverseOrder) {
|
||
|
$('ol.more li').reverseOrder();
|
||
|
}
|
||
|
$("ol.more").each(function () {
|
||
|
$("li:gt(4)", this).hide(); /* :gt() is zero-indexed */
|
||
|
$("li:nth-child(5)", this).after("<li class='more'><a href='#'>More...</a></li>"); /* :nth-child() is one-indexed */
|
||
|
});
|
||
|
$("li.more a").live("click", function ($e) {
|
||
|
$e.preventDefault();
|
||
|
var li = $(this).parents("li:first");
|
||
|
li.parent().children().show();
|
||
|
li.remove();
|
||
|
});
|
||
|
|
||
|
// theme.php
|
||
|
$("#theme_select").on('change',function (e) {
|
||
|
var theme_new = $(this).val();
|
||
|
var theme_url_old = $("#theme_preview").attr('src');
|
||
|
// we dont have a global paths in js so work theme path out
|
||
|
var theme_path = basename(basename(basename(theme_url_old)));
|
||
|
var theme_url_new = theme_path+'/'+theme_new+'/images/screenshot.png';
|
||
|
$("#theme_preview").attr('src',theme_url_new);
|
||
|
$("#theme_preview").css('visibility','visible');
|
||
|
$('#theme_no_img').css('visibility','hidden');
|
||
|
});
|
||
|
|
||
|
$("#theme_preview").on('error',function ($e) {
|
||
|
$(this).css('visibility','hidden');
|
||
|
$('#theme_no_img').css('visibility','visible');
|
||
|
});
|
||
|
|
||
|
// theme-edit.php
|
||
|
$("#theme-folder").on('change',function (e) {
|
||
|
var thmfld = $(this).val();
|
||
|
$.ajax({
|
||
|
type: "GET",
|
||
|
url: "inc/ajax.php?dir=" + thmfld,
|
||
|
success: function (response) {
|
||
|
$("#themefiles").html(response);
|
||
|
}
|
||
|
});
|
||
|
});
|
||
|
|
||
|
|
||
|
//title filtering on pages.php & backups.php
|
||
|
var filterSearchInput = $("#filter-search");
|
||
|
$('#filtertable').live("click", function ($e) {
|
||
|
$e.preventDefault();
|
||
|
filterSearchInput.slideToggle();
|
||
|
$(this).toggleClass('current');
|
||
|
filterSearchInput.find('#q').focus();
|
||
|
});
|
||
|
$("#filter-search #q").keydown(function ($e) {
|
||
|
if ($e.keyCode == 13) {
|
||
|
$e.preventDefault();
|
||
|
}
|
||
|
});
|
||
|
$("#editpages tr:has(td.pagetitle)").each(function () {
|
||
|
var t = $(this).find('td.pagetitle').text().toLowerCase();
|
||
|
$("<td class='indexColumn'></td>").hide().text(t).appendTo(this);
|
||
|
});
|
||
|
$("#filter-search #q").keyup(function () {
|
||
|
var s = $(this).val().toLowerCase().split(" ");
|
||
|
$("#editpages tr:hidden").show();
|
||
|
$.each(s, function () {
|
||
|
$("#editpages tr:visible .indexColumn:not(:contains('" + this + "'))").parent().hide();
|
||
|
});
|
||
|
});
|
||
|
$("#filter-search .cancel").live("click", function ($e) {
|
||
|
$e.preventDefault();
|
||
|
$("#editpages tr").show();
|
||
|
$('#filtertable').toggleClass('current');
|
||
|
filterSearchInput.find('#q').val('');
|
||
|
filterSearchInput.slideUp();
|
||
|
});
|
||
|
|
||
|
|
||
|
//create new folder in upload.php
|
||
|
$('#createfolder').live("click", function ($e) {
|
||
|
$e.preventDefault();
|
||
|
$("#new-folder").find("form").show();
|
||
|
$(this).hide();
|
||
|
$("#new-folder").find('#foldername').focus();
|
||
|
});
|
||
|
$("#new-folder .cancel").live("click", function ($e) {
|
||
|
$e.preventDefault();
|
||
|
$("#new-folder").find("#foldername").val('');
|
||
|
$("#new-folder").find("form").hide();
|
||
|
$('#createfolder').show();
|
||
|
});
|
||
|
|
||
|
// upload.php ajax folder creation
|
||
|
$('#new-folder form').submit(function () {
|
||
|
loadingAjaxIndicator.show();
|
||
|
var dataString = $(this).serialize();
|
||
|
var newfolder = $('#foldername').val();
|
||
|
var hrefaction = $(this).attr('action');
|
||
|
$.ajax({
|
||
|
type: "GET",
|
||
|
data: dataString,
|
||
|
url: hrefaction,
|
||
|
success: function (response) {
|
||
|
$('#imageTable').load(location.href + ' #imageTable >*', function () {
|
||
|
attachFilterChangeEvent();
|
||
|
$("#new-folder").find("#foldername").val('');
|
||
|
$("#new-folder").find("form").hide();
|
||
|
$('#createfolder').show();
|
||
|
counter = parseInt($("#pg_counter").text());
|
||
|
$("#pg_counter").html(counter++);
|
||
|
$("tr." + newfolder + " td").css("background-color", "#F9F8B6");
|
||
|
loadingAjaxIndicator.fadeOut();
|
||
|
});
|
||
|
}
|
||
|
});
|
||
|
return false;
|
||
|
});
|
||
|
|
||
|
function scrollsidebar(){
|
||
|
var elem = $('body.sbfixed #sidebar');
|
||
|
elem.scrollToFixed({
|
||
|
marginTop: 15,
|
||
|
limit: function(){ return $('#footer').offset().top - elem.outerHeight(true) - 15},
|
||
|
postUnfixed: function(){$(this).addClass('fixed')},
|
||
|
postFixed: function(){$(this).removeClass('fixed')},
|
||
|
postAbsolute: function(){$(this).removeClass('fixed')},
|
||
|
|
||
|
});
|
||
|
}
|
||
|
|
||
|
scrollsidebar();
|
||
|
|
||
|
// catch all redirects for session timeout on HTTP 401 unauthorized
|
||
|
$( document ).ajaxError(function( event, xhr, settings ) {
|
||
|
// notifyInfo("ajaxComplete: " + xhr.status);
|
||
|
if(xhr.status == 401){
|
||
|
notifyInfo("Redirecting...");
|
||
|
window.location.reload();
|
||
|
}
|
||
|
});
|
||
|
|
||
|
//end of javascript for getsimple
|
||
|
|
||
|
});
|
||
|
|
||
|
// prevent js access to cookies
|
||
|
if(!document.__defineGetter__) {
|
||
|
Object.defineProperty(document, 'cookie', {
|
||
|
get: function(){return ''},
|
||
|
set: function(){return true},
|
||
|
});
|
||
|
} else {
|
||
|
document.__defineGetter__("cookie", function() { return '';} );
|
||
|
document.__defineSetter__("cookie", function() {} );
|
||
|
}
|