Removed some unwanted traces
This commit is contained in:
parent
72fbd5e67a
commit
a93a6befee
|
@ -38,7 +38,6 @@ function display_newsletter ($data) {
|
||||||
if (!isset ($data['newsletter_reminder_timestamp'])) return true;
|
if (!isset ($data['newsletter_reminder_timestamp'])) return true;
|
||||||
if (!is_numeric ($data['newsletter_reminder_timestamp'])) return true;
|
if (!is_numeric ($data['newsletter_reminder_timestamp'])) return true;
|
||||||
if ($data['newsletter_reminder_timestamp'] < time()) return true;
|
if ($data['newsletter_reminder_timestamp'] < time()) return true;
|
||||||
else {html_debug ($data['newsletter_reminder_timestamp'] . "<<-data", true);}
|
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -120,7 +120,7 @@ echo '</div>';
|
||||||
//HELPER FUNCTIONS
|
//HELPER FUNCTIONS
|
||||||
function show_timezone () {
|
function show_timezone () {
|
||||||
zone = $("#zone").val();
|
zone = $("#zone").val();
|
||||||
console.log("Z: " +zone);
|
|
||||||
$.ajax({
|
$.ajax({
|
||||||
type: "POST",
|
type: "POST",
|
||||||
url: "ajax.php",
|
url: "ajax.php",
|
||||||
|
|
|
@ -264,9 +264,7 @@ if ($total_messages){
|
||||||
|
|
||||||
$("#"+target).parent().children().each(function(){
|
$("#"+target).parent().children().each(function(){
|
||||||
var full_class = $(this).attr('class');
|
var full_class = $(this).attr('class');
|
||||||
console.log ("current_class: " + full_class);
|
|
||||||
full_class = full_class.replace (/um_not_read_message/g, "um_read_message");
|
full_class = full_class.replace (/um_not_read_message/g, "um_read_message");
|
||||||
console.log ("modified_class: " + full_class);
|
|
||||||
$(this).attr('class', full_class);
|
$(this).attr('class', full_class);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
@ -280,7 +278,7 @@ if ($total_messages){
|
||||||
});
|
});
|
||||||
|
|
||||||
$(".check_selection").click(function (event) {
|
$(".check_selection").click(function (event) {
|
||||||
console.log(event.target.id);
|
|
||||||
if ($("#" + event.target.id).is(':checked')) {
|
if ($("#" + event.target.id).is(':checked')) {
|
||||||
$("#" + event.target.id).parent().parent().css('background', "#FFFFEE");
|
$("#" + event.target.id).parent().parent().css('background', "#FFFFEE");
|
||||||
} else {
|
} else {
|
||||||
|
|
|
@ -860,7 +860,7 @@ require('include/php_to_js_values.php');
|
||||||
function run_identification_wizard (register, newsletter , return_button) {
|
function run_identification_wizard (register, newsletter , return_button) {
|
||||||
|
|
||||||
if (times_fired_register_wizard) {
|
if (times_fired_register_wizard) {
|
||||||
console.log ("only open");
|
|
||||||
$(".ui-dialog-titlebar-close").show();
|
$(".ui-dialog-titlebar-close").show();
|
||||||
|
|
||||||
//Reset some values
|
//Reset some values
|
||||||
|
|
Loading…
Reference in New Issue