forked from science-ation/science-ation
2762a12eb0
- Reimplement the new award functionality - Fix the reloading of the dialog by disabling all tabs and reselecting one. It works properly now.
72 lines
1.4 KiB
JavaScript
72 lines
1.4 KiB
JavaScript
//useful function that we'll be using throughout
|
|
function confirmClick(msg)
|
|
{
|
|
var okay=confirm(msg);
|
|
if(okay)
|
|
return true;
|
|
else
|
|
return false;
|
|
}
|
|
|
|
function el(str,domain,name)
|
|
{
|
|
document.write('<a href="ma'+'il'+'to:' + str + '@' + domain + '">' + name + '</a>');
|
|
}
|
|
|
|
function em(str,domain)
|
|
{
|
|
document.write('<a href="ma'+'il'+'to:' + str + '@' + domain + '">' + str + '@' + domain + '</a>');
|
|
}
|
|
|
|
var anyFieldHasBeenChanged=false;
|
|
|
|
function fieldChanged()
|
|
{
|
|
anyFieldHasBeenChanged=true;
|
|
}
|
|
|
|
function confirmChanges()
|
|
{
|
|
if(anyFieldHasBeenChanged)
|
|
{
|
|
var okay=confirm('<?=i18n("You have unsaved changes. Click \"Cancel\" to return so you can save your changes, or press \"OK\" to discard your changes and continue")?>');
|
|
if(okay)
|
|
return true;
|
|
else
|
|
return false;
|
|
}
|
|
else
|
|
return true;
|
|
}
|
|
|
|
var _notice_id = 0;
|
|
function notice_delete(id)
|
|
{
|
|
$("#notice_"+id).slideUp('slow', function() {
|
|
$("#notice_"+id).remove();
|
|
});
|
|
}
|
|
|
|
function notice_create(type,str,timeout)
|
|
{
|
|
if(timeout == -1) timeout = 5000;
|
|
_notice_id++;
|
|
$("#notice_area").append("<div id=\"notice_"+_notice_id+"\" class=\"notice "+type+"\" >"+str+"</div>");
|
|
$("#notice_"+_notice_id).show('puff');
|
|
$("#notice_"+_notice_id).fadeTo('fast', 0.85);
|
|
setTimeout("notice_delete("+_notice_id+")", timeout);
|
|
}
|
|
|
|
function notice_(str)
|
|
{
|
|
notice_create('notice',str,-1);
|
|
}
|
|
|
|
/* Stuff to do after the document loads */
|
|
$(document).ready(function()
|
|
{
|
|
|
|
});
|
|
|
|
|