mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-11 20:13:28 +00:00
Fix JS codestyle
This commit is contained in:
@@ -1,48 +1,53 @@
|
||||
var p4 = p4 || {};
|
||||
|
||||
$(document).ready(function(){
|
||||
$(document).ready(function () {
|
||||
$('input.input-button').hover(
|
||||
function(){$(this).addClass('hover');},
|
||||
function(){$(this).removeClass('hover');}
|
||||
function () {
|
||||
$(this).addClass('hover');
|
||||
},
|
||||
function () {
|
||||
$(this).removeClass('hover');
|
||||
}
|
||||
);
|
||||
|
||||
var locale = $.cookie('locale');
|
||||
|
||||
var jq_date = p4.lng = typeof locale !== "undefined" ? locale.split('_').reverse().pop() : 'en';
|
||||
|
||||
if(jq_date == 'en')
|
||||
{
|
||||
if (jq_date == 'en') {
|
||||
jq_date = 'en-GB';
|
||||
}
|
||||
|
||||
$.datepicker.setDefaults({showMonthAfterYear: false});
|
||||
$.datepicker.setDefaults($.datepicker.regional[jq_date]);
|
||||
|
||||
$('a.infoDialog,div.infoDialog').live('click',function(event){
|
||||
$('a.infoDialog,div.infoDialog').live('click', function (event) {
|
||||
console.log("click");
|
||||
infoDialog($(this));
|
||||
});
|
||||
|
||||
var cache = $('#mainMenu .helpcontextmenu');
|
||||
$('.context-menu-item',cache).hover(function(){$(this).addClass('context-menu-item-hover');},function(){$(this).removeClass('context-menu-item-hover');});
|
||||
|
||||
$('#help-trigger').contextMenu('#mainMenu .helpcontextmenu',{openEvt:'click',dropDown:true,theme:'vista', dropDown:true,
|
||||
showTransition:'slideDown',
|
||||
hideTransition:'hide',
|
||||
shadow:false
|
||||
$('.context-menu-item', cache).hover(function () {
|
||||
$(this).addClass('context-menu-item-hover');
|
||||
}, function () {
|
||||
$(this).removeClass('context-menu-item-hover');
|
||||
});
|
||||
|
||||
$('#notification_trigger').bind('mousedown',function(event){
|
||||
$('#help-trigger').contextMenu('#mainMenu .helpcontextmenu', {openEvt: 'click', dropDown: true, theme: 'vista', dropDown: true,
|
||||
showTransition: 'slideDown',
|
||||
hideTransition: 'hide',
|
||||
shadow: false
|
||||
});
|
||||
|
||||
$('#notification_trigger').bind('mousedown', function (event) {
|
||||
event.stopPropagation();
|
||||
var box = $('#notification_box');
|
||||
if($(this).hasClass('open'))
|
||||
{
|
||||
if ($(this).hasClass('open')) {
|
||||
box.hide();
|
||||
$(this).removeClass('open');
|
||||
clear_notifications();
|
||||
}
|
||||
else
|
||||
{
|
||||
else {
|
||||
box.show();
|
||||
|
||||
fix_notification_height();
|
||||
@@ -52,24 +57,26 @@ $(document).ready(function(){
|
||||
}
|
||||
});
|
||||
|
||||
$(this).bind('mousedown',function(){
|
||||
$(this).bind('mousedown', function () {
|
||||
var not_trigger = $('#notification_trigger');
|
||||
if(not_trigger.hasClass('open'))
|
||||
if (not_trigger.hasClass('open'))
|
||||
not_trigger.trigger('click');
|
||||
});
|
||||
$('#notification_box').bind('mousedown',function(event){
|
||||
$('#notification_box').bind('mousedown', function (event) {
|
||||
event.stopPropagation();
|
||||
});
|
||||
|
||||
$('#notification_box div.notification').live('mouseover',function(){$(this).addClass('hover');});
|
||||
$('#notification_box div.notification').live('mouseout',function(){$(this).removeClass('hover');});
|
||||
$('#notification_box div.notification').live('mouseover', function () {
|
||||
$(this).addClass('hover');
|
||||
});
|
||||
$('#notification_box div.notification').live('mouseout', function () {
|
||||
$(this).removeClass('hover');
|
||||
});
|
||||
|
||||
|
||||
|
||||
$(this).bind('mousedown',function(){
|
||||
$(this).bind('mousedown', function () {
|
||||
var box = $('#notification_box');
|
||||
if($('#notification_trigger').hasClass('open'))
|
||||
{
|
||||
if ($('#notification_trigger').hasClass('open')) {
|
||||
box.hide();
|
||||
$('#notification_trigger').removeClass('open');
|
||||
clear_notifications();
|
||||
@@ -82,12 +89,10 @@ $(document).ready(function(){
|
||||
});
|
||||
|
||||
|
||||
function login(what)
|
||||
{
|
||||
function login(what) {
|
||||
if (confirm(language.confirmRedirectAuth)) {
|
||||
if(what != undefined)
|
||||
{
|
||||
EcrireCookie('last_act',what,null,'/');
|
||||
if (what != undefined) {
|
||||
EcrireCookie('last_act', what, null, '/');
|
||||
}
|
||||
self.location.replace('/login/?postlog=1');
|
||||
}
|
||||
@@ -95,127 +100,119 @@ function login(what)
|
||||
}
|
||||
|
||||
|
||||
function EcrireCookie(nom, valeur)
|
||||
{
|
||||
var argv=EcrireCookie.arguments;
|
||||
var argc=EcrireCookie.arguments.length;
|
||||
var expires=(argc > 2) ? argv[2] : null;
|
||||
var path=(argc > 3) ? argv[3] : null;
|
||||
var domain=(argc > 4) ? argv[4] : null;
|
||||
var secure=(argc > 5) ? argv[5] : false;
|
||||
var cook = nom+"="+escape(valeur)+
|
||||
((expires===null) ? "" : ("; expires="+expires.toGMTString()))+
|
||||
((path===null) ? "" : ("; path="+path))+
|
||||
((domain===null) ? "" : ("; domain="+domain))+
|
||||
((secure===true) ? "; secure" : "");
|
||||
function EcrireCookie(nom, valeur) {
|
||||
var argv = EcrireCookie.arguments;
|
||||
var argc = EcrireCookie.arguments.length;
|
||||
var expires = (argc > 2) ? argv[2] : null;
|
||||
var path = (argc > 3) ? argv[3] : null;
|
||||
var domain = (argc > 4) ? argv[4] : null;
|
||||
var secure = (argc > 5) ? argv[5] : false;
|
||||
var cook = nom + "=" + escape(valeur) +
|
||||
((expires === null) ? "" : ("; expires=" + expires.toGMTString())) +
|
||||
((path === null) ? "" : ("; path=" + path)) +
|
||||
((domain === null) ? "" : ("; domain=" + domain)) +
|
||||
((secure === true) ? "; secure" : "");
|
||||
document.cookie = cook;
|
||||
}
|
||||
|
||||
function fix_notification_height()
|
||||
{
|
||||
function fix_notification_height() {
|
||||
var box = $('#notification_box');
|
||||
var not = $('.notification',box);
|
||||
var not = $('.notification', box);
|
||||
var n = not.length;
|
||||
var not_t = $('.notification_title',box);
|
||||
var not_t = $('.notification_title', box);
|
||||
var n_t = not_t.length;
|
||||
|
||||
h = not.outerHeight() * n + not_t.outerHeight() * n_t;
|
||||
h = h > 350 ? 350 : h;
|
||||
|
||||
box.stop().animate({height:h});
|
||||
box.stop().animate({height: h});
|
||||
}
|
||||
|
||||
function set_notif_position()
|
||||
{
|
||||
function set_notif_position() {
|
||||
var trigger = $('#notification_trigger');
|
||||
if(trigger.length === 0)
|
||||
if (trigger.length === 0)
|
||||
return;
|
||||
$('#notification_box').css({
|
||||
'left':Math.round(trigger.offset().left - 1)
|
||||
'left': Math.round(trigger.offset().left - 1)
|
||||
});
|
||||
}
|
||||
$(window).bind('resize', function(){
|
||||
$(window).bind('resize', function () {
|
||||
set_notif_position();
|
||||
});
|
||||
|
||||
|
||||
function print_notifications(page)
|
||||
{
|
||||
function print_notifications(page) {
|
||||
|
||||
page = parseInt(page);
|
||||
var buttons = {};
|
||||
|
||||
buttons[language.fermer] = function(){
|
||||
buttons[language.fermer] = function () {
|
||||
$('#notifications-dialog').dialog('close');
|
||||
};
|
||||
|
||||
if($('#notifications-dialog').length === 0)
|
||||
if ($('#notifications-dialog').length === 0)
|
||||
$('body').append('<div id="notifications-dialog" class="loading"></div>');
|
||||
|
||||
$('#notifications-dialog')
|
||||
.dialog({
|
||||
title:language.notifications,
|
||||
autoOpen:false,
|
||||
closeOnEscape:true,
|
||||
resizable:false,
|
||||
draggable:false,
|
||||
modal:true,
|
||||
width:500,
|
||||
height:400,
|
||||
title: language.notifications,
|
||||
autoOpen: false,
|
||||
closeOnEscape: true,
|
||||
resizable: false,
|
||||
draggable: false,
|
||||
modal: true,
|
||||
width: 500,
|
||||
height: 400,
|
||||
overlay: {
|
||||
backgroundColor: '#000',
|
||||
opacity: 0.7
|
||||
},
|
||||
close:function(event,ui)
|
||||
{
|
||||
close: function (event, ui) {
|
||||
$('#notifications-dialog').dialog('destroy').remove();
|
||||
}
|
||||
}).dialog('option','buttons',buttons)
|
||||
}).dialog('option', 'buttons', buttons)
|
||||
.dialog('open');
|
||||
|
||||
|
||||
$.ajax({
|
||||
type: "GET",
|
||||
url: "/user/notifications/",
|
||||
dataType : 'json',
|
||||
dataType: 'json',
|
||||
data: {
|
||||
page:page
|
||||
page: page
|
||||
},
|
||||
error: function(data){
|
||||
error: function (data) {
|
||||
$('#notifications-dialog').removeClass('loading');
|
||||
},
|
||||
timeout: function(data){
|
||||
timeout: function (data) {
|
||||
$('#notifications-dialog').removeClass('loading');
|
||||
},
|
||||
success: function(data){
|
||||
success: function (data) {
|
||||
$('#notifications-dialog').removeClass('loading');
|
||||
var cont = $('#notifications-dialog');
|
||||
|
||||
if(page === 0)
|
||||
if (page === 0)
|
||||
cont.empty();
|
||||
else
|
||||
$('.notification_next',cont).remove();
|
||||
$('.notification_next', cont).remove();
|
||||
|
||||
for (i in data.notifications)
|
||||
{
|
||||
var id = 'notif_date_'+i;
|
||||
var date_cont = $('#'+id);
|
||||
if(date_cont.length === 0)
|
||||
{
|
||||
cont.append('<div id="'+id+'"><div class="notification_title">'+data.notifications[i].display+'</div></div>');
|
||||
date_cont = $('#'+id);
|
||||
for (i in data.notifications) {
|
||||
var id = 'notif_date_' + i;
|
||||
var date_cont = $('#' + id);
|
||||
if (date_cont.length === 0) {
|
||||
cont.append('<div id="' + id + '"><div class="notification_title">' + data.notifications[i].display + '</div></div>');
|
||||
date_cont = $('#' + id);
|
||||
}
|
||||
|
||||
for (j in data.notifications[i].notifications)
|
||||
{
|
||||
for (j in data.notifications[i].notifications) {
|
||||
var loc_dat = data.notifications[i].notifications[j];
|
||||
var html = '<div style="position:relative;" id="notification_'+loc_dat.id+'" class="notification">'+
|
||||
'<table style="width:100%;" cellspacing="0" cellpadding="0" border="0"><tr><td style="width:25px;">'+
|
||||
loc_dat.icon+
|
||||
'</td><td>'+
|
||||
'<div style="position:relative;" class="'+loc_dat.classname+'">'+
|
||||
loc_dat.text+' <span class="time">'+loc_dat.time+'</span></div>'+
|
||||
'</td></tr></table>'+
|
||||
var html = '<div style="position:relative;" id="notification_' + loc_dat.id + '" class="notification">' +
|
||||
'<table style="width:100%;" cellspacing="0" cellpadding="0" border="0"><tr><td style="width:25px;">' +
|
||||
loc_dat.icon +
|
||||
'</td><td>' +
|
||||
'<div style="position:relative;" class="' + loc_dat.classname + '">' +
|
||||
loc_dat.text + ' <span class="time">' + loc_dat.time + '</span></div>' +
|
||||
'</td></tr></table>' +
|
||||
'</div>';
|
||||
date_cont.append(html);
|
||||
}
|
||||
@@ -223,9 +220,8 @@ function print_notifications(page)
|
||||
|
||||
var next_ln = $.trim(data.next);
|
||||
|
||||
if(next_ln !== '')
|
||||
{
|
||||
cont.append('<div class="notification_next">'+next_ln+'</div>');
|
||||
if (next_ln !== '') {
|
||||
cont.append('<div class="notification_next">' + next_ln + '</div>');
|
||||
}
|
||||
|
||||
// '<div style="position:relative;" id="notification_'.$row['id'].'" class="notification '.($row['unread'] == '1' ? 'unread':'').'">'.
|
||||
@@ -243,11 +239,10 @@ function print_notifications(page)
|
||||
|
||||
}
|
||||
|
||||
function read_notifications()
|
||||
{
|
||||
function read_notifications() {
|
||||
var notifications = [];
|
||||
|
||||
$('#notification_box .unread').each(function(){
|
||||
$('#notification_box .unread').each(function () {
|
||||
notifications.push($(this).attr('id').split('_').pop());
|
||||
});
|
||||
|
||||
@@ -255,180 +250,158 @@ function read_notifications()
|
||||
type: "POST",
|
||||
url: "/user/notifications/read/",
|
||||
data: {
|
||||
notifications:notifications.join('_')
|
||||
notifications: notifications.join('_')
|
||||
},
|
||||
success: function(data){
|
||||
$('#notification_trigger .counter').css('visibility','hidden').empty();
|
||||
success: function (data) {
|
||||
$('#notification_trigger .counter').css('visibility', 'hidden').empty();
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
function clear_notifications()
|
||||
{
|
||||
function clear_notifications() {
|
||||
var unread = $('#notification_box .unread');
|
||||
|
||||
if(unread.length === 0)
|
||||
if (unread.length === 0)
|
||||
return;
|
||||
|
||||
unread.removeClass('unread');
|
||||
$('#notification_trigger .counter').css('visibility','hidden').empty();
|
||||
$('#notification_trigger .counter').css('visibility', 'hidden').empty();
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
function getMyRss(renew)
|
||||
{
|
||||
function getMyRss(renew) {
|
||||
|
||||
$.ajax({
|
||||
type: "POST",
|
||||
url: "/prod/prodFeedBack.php",
|
||||
dataType: 'json',
|
||||
data: datas,
|
||||
success: function(data){
|
||||
success: function (data) {
|
||||
}
|
||||
});
|
||||
|
||||
}
|
||||
|
||||
function setPref(name,value)
|
||||
{
|
||||
if(jQuery.data['pref_'+name] && jQuery.data['pref_'+name].abort)
|
||||
{
|
||||
jQuery.data['pref_'+name].abort();
|
||||
jQuery.data['pref_'+name] = false;
|
||||
function setPref(name, value) {
|
||||
if (jQuery.data['pref_' + name] && jQuery.data['pref_' + name].abort) {
|
||||
jQuery.data['pref_' + name].abort();
|
||||
jQuery.data['pref_' + name] = false;
|
||||
}
|
||||
|
||||
jQuery.data['pref_'+name] = $.ajax({
|
||||
jQuery.data['pref_' + name] = $.ajax({
|
||||
type: "POST",
|
||||
url: "/user/preferences/",
|
||||
data: {
|
||||
prop:name,
|
||||
value:value
|
||||
prop: name,
|
||||
value: value
|
||||
},
|
||||
dataType:'json',
|
||||
timeout: function(){
|
||||
jQuery.data['pref_'+name] = false;
|
||||
dataType: 'json',
|
||||
timeout: function () {
|
||||
jQuery.data['pref_' + name] = false;
|
||||
},
|
||||
error: function(){
|
||||
jQuery.data['pref_'+name] = false;
|
||||
error: function () {
|
||||
jQuery.data['pref_' + name] = false;
|
||||
},
|
||||
success: function(data){
|
||||
if(data.success)
|
||||
{
|
||||
success: function (data) {
|
||||
if (data.success) {
|
||||
humane.info(data.message);
|
||||
}
|
||||
else
|
||||
{
|
||||
else {
|
||||
humane.error(data.message);
|
||||
}
|
||||
jQuery.data['pref_'+name] = false;
|
||||
jQuery.data['pref_' + name] = false;
|
||||
return;
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
function infoDialog(el)
|
||||
{
|
||||
function infoDialog(el) {
|
||||
|
||||
$("#DIALOG").attr('title','')
|
||||
$("#DIALOG").attr('title', '')
|
||||
.empty()
|
||||
.append(el.attr('infos'))
|
||||
.dialog({
|
||||
|
||||
autoOpen:false,
|
||||
closeOnEscape:true,
|
||||
resizable:false,
|
||||
draggable:false,
|
||||
width:600,
|
||||
height:400,
|
||||
modal:true,
|
||||
autoOpen: false,
|
||||
closeOnEscape: true,
|
||||
resizable: false,
|
||||
draggable: false,
|
||||
width: 600,
|
||||
height: 400,
|
||||
modal: true,
|
||||
overlay: {
|
||||
backgroundColor: '#000',
|
||||
opacity: 0.7
|
||||
}
|
||||
}).dialog('open').css({'overflow-x':'auto','overflow-y':'auto'});
|
||||
}).dialog('open').css({'overflow-x': 'auto', 'overflow-y': 'auto'});
|
||||
}
|
||||
function manageSession(data, showMessages)
|
||||
{
|
||||
if(typeof(showMessages) == "undefined")
|
||||
function manageSession(data, showMessages) {
|
||||
if (typeof(showMessages) == "undefined")
|
||||
showMessages = false;
|
||||
|
||||
if(data.status == 'disconnected' || data.status == 'session')
|
||||
{
|
||||
if (data.status == 'disconnected' || data.status == 'session') {
|
||||
disconnected();
|
||||
return false;
|
||||
}
|
||||
if(showMessages)
|
||||
{
|
||||
if (showMessages) {
|
||||
var box = $('#notification_box');
|
||||
box.empty().append(data.notifications);
|
||||
|
||||
if(box.is(':visible'))
|
||||
if (box.is(':visible'))
|
||||
fix_notification_height();
|
||||
|
||||
if($('.notification.unread',box).length > 0)
|
||||
{
|
||||
var trigger = $('#notification_trigger') ;
|
||||
$('.counter',trigger)
|
||||
if ($('.notification.unread', box).length > 0) {
|
||||
var trigger = $('#notification_trigger');
|
||||
$('.counter', trigger)
|
||||
.empty()
|
||||
.append($('.notification.unread',box).length);
|
||||
$('.counter',trigger).css('visibility','visible');
|
||||
.append($('.notification.unread', box).length);
|
||||
$('.counter', trigger).css('visibility', 'visible');
|
||||
|
||||
}
|
||||
else
|
||||
$('#notification_trigger .counter').css('visibility','hidden').empty();
|
||||
$('#notification_trigger .counter').css('visibility', 'hidden').empty();
|
||||
|
||||
if(data.changed.length > 0)
|
||||
{
|
||||
if (data.changed.length > 0) {
|
||||
var current_open = $('.SSTT.ui-state-active');
|
||||
var current_sstt = current_open.length > 0 ? current_open.attr('id').split('_').pop() : false;
|
||||
|
||||
var main_open = false;
|
||||
for(var i=0; i!=data.changed.length; i++)
|
||||
{
|
||||
var sstt = $('#SSTT_'+data.changed[i]);
|
||||
if(sstt.size() === 0)
|
||||
{
|
||||
if(main_open === false)
|
||||
{
|
||||
$('#baskets .bloc').animate({'top':30}, function(){$('#baskets .alert_datas_changed:first').show()});
|
||||
for (var i = 0; i != data.changed.length; i++) {
|
||||
var sstt = $('#SSTT_' + data.changed[i]);
|
||||
if (sstt.size() === 0) {
|
||||
if (main_open === false) {
|
||||
$('#baskets .bloc').animate({'top': 30}, function () {
|
||||
$('#baskets .alert_datas_changed:first').show()
|
||||
});
|
||||
main_open = true;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
if(!sstt.hasClass('active'))
|
||||
else {
|
||||
if (!sstt.hasClass('active'))
|
||||
sstt.addClass('unread');
|
||||
else
|
||||
{
|
||||
$('.alert_datas_changed', $('#SSTT_content_'+data.changed[i])).show();
|
||||
else {
|
||||
$('.alert_datas_changed', $('#SSTT_content_' + data.changed[i])).show();
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
if('' !== $.trim(data.message))
|
||||
{
|
||||
if($('#MESSAGE').length === 0)
|
||||
if ('' !== $.trim(data.message)) {
|
||||
if ($('#MESSAGE').length === 0)
|
||||
$('body').append('<div id="#MESSAGE"></div>');
|
||||
$('#MESSAGE')
|
||||
.empty()
|
||||
.append(data.message+'<div style="margin:20px;"><input type="checkbox" class="dialog_remove" />'+language.hideMessage+'</div>')
|
||||
.attr('title','Global Message')
|
||||
.append(data.message + '<div style="margin:20px;"><input type="checkbox" class="dialog_remove" />' + language.hideMessage + '</div>')
|
||||
.attr('title', 'Global Message')
|
||||
.dialog({
|
||||
autoOpen:false,
|
||||
closeOnEscape:true,
|
||||
resizable:false,
|
||||
draggable:false,
|
||||
modal:true,
|
||||
close:function()
|
||||
{
|
||||
if($('.dialog_remove:checked',$(this)).length > 0)
|
||||
setTemporaryPref('message',0);
|
||||
autoOpen: false,
|
||||
closeOnEscape: true,
|
||||
resizable: false,
|
||||
draggable: false,
|
||||
modal: true,
|
||||
close: function () {
|
||||
if ($('.dialog_remove:checked', $(this)).length > 0)
|
||||
setTemporaryPref('message', 0);
|
||||
}
|
||||
})
|
||||
.dialog('open');
|
||||
@@ -438,25 +411,23 @@ function manageSession(data, showMessages)
|
||||
}
|
||||
|
||||
|
||||
|
||||
function disconnected()
|
||||
{
|
||||
showModal('disconnected',{title:'Disconnection'});
|
||||
function disconnected() {
|
||||
showModal('disconnected', {title: 'Disconnection'});
|
||||
}
|
||||
|
||||
function showModal(cas, options){
|
||||
function showModal(cas, options) {
|
||||
|
||||
var content = '';
|
||||
var callback = null;
|
||||
var button = {
|
||||
"OK": function(e)
|
||||
{
|
||||
"OK": function (e) {
|
||||
hideOverlay(3);
|
||||
$(this).dialog("close");
|
||||
return;
|
||||
}};
|
||||
var escape = true;
|
||||
var onClose = function(){};
|
||||
var onClose = function () {
|
||||
};
|
||||
|
||||
switch (cas) {
|
||||
case 'timeout':
|
||||
@@ -467,8 +438,10 @@ function showModal(cas, options){
|
||||
break;
|
||||
case 'disconnected':
|
||||
content = language.serverDisconnected;
|
||||
escape=false;
|
||||
callback = function(e){ self.location.replace(self.location.href)};
|
||||
escape = false;
|
||||
callback = function (e) {
|
||||
self.location.replace(self.location.href)
|
||||
};
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
@@ -479,35 +452,37 @@ function showModal(cas, options){
|
||||
return;
|
||||
}
|
||||
|
||||
function showOverlay(n,appendto,callback, zIndex){
|
||||
function showOverlay(n, appendto, callback, zIndex) {
|
||||
|
||||
var div ="OVERLAY";
|
||||
if(typeof(n)!="undefined")
|
||||
div+=n;
|
||||
if($('#'+div).length === 0)
|
||||
{
|
||||
if(typeof(appendto)=='undefined')
|
||||
var div = "OVERLAY";
|
||||
if (typeof(n) != "undefined")
|
||||
div += n;
|
||||
if ($('#' + div).length === 0) {
|
||||
if (typeof(appendto) == 'undefined')
|
||||
appendto = 'body';
|
||||
$(appendto).append('<div id="'+div+'" style="display:none;"> </div>');
|
||||
$(appendto).append('<div id="' + div + '" style="display:none;"> </div>');
|
||||
}
|
||||
|
||||
var css = {
|
||||
display: 'block',
|
||||
opacity: 0,
|
||||
right:0,
|
||||
bottom:0,
|
||||
position:'absolute',
|
||||
top:0,
|
||||
zIndex:zIndex,
|
||||
left:0
|
||||
right: 0,
|
||||
bottom: 0,
|
||||
position: 'absolute',
|
||||
top: 0,
|
||||
zIndex: zIndex,
|
||||
left: 0
|
||||
};
|
||||
|
||||
if(parseInt(zIndex) > 0)
|
||||
if (parseInt(zIndex) > 0)
|
||||
css['zIndex'] = parseInt(zIndex);
|
||||
|
||||
if(typeof(callback) != 'function')
|
||||
callback = function(){};
|
||||
$('#'+div).css(css).addClass('overlay').fadeTo(500, 0.7).bind('click',function(){(callback)();});
|
||||
if (typeof(callback) != 'function')
|
||||
callback = function () {
|
||||
};
|
||||
$('#' + div).css(css).addClass('overlay').fadeTo(500, 0.7).bind('click', function () {
|
||||
(callback)();
|
||||
});
|
||||
if ($.browser.msie && $.browser.version == '6.0') {
|
||||
$('select').css({
|
||||
visibility: 'hidden'
|
||||
@@ -515,22 +490,22 @@ function showOverlay(n,appendto,callback, zIndex){
|
||||
}
|
||||
}
|
||||
|
||||
function hideDwnl(){
|
||||
function hideDwnl() {
|
||||
hideOverlay(2);
|
||||
$('#MODALDL').css({
|
||||
'display': 'none'
|
||||
});
|
||||
}
|
||||
|
||||
function hideOverlay(n){
|
||||
function hideOverlay(n) {
|
||||
if ($.browser.msie && $.browser.version == '6.0') {
|
||||
$('select').css({
|
||||
visibility: 'visible'
|
||||
});
|
||||
}
|
||||
var div = "OVERLAY";
|
||||
if(typeof(n)!="undefined")
|
||||
div+=n;
|
||||
$('#'+div).hide().remove();
|
||||
if (typeof(n) != "undefined")
|
||||
div += n;
|
||||
$('#' + div).hide().remove();
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user