2014-09-04 17:52:18 +02:00
|
|
|
$(document).ready(function() {
|
2014-10-21 01:31:26 +02:00
|
|
|
|
2015-03-05 14:53:42 +01:00
|
|
|
window.lang = $('html').attr('lang');
|
2014-10-21 01:31:26 +02:00
|
|
|
|
|
|
|
var datepickerfocus = false; // a11y : datepicker not display on focus until there is one click on the button
|
|
|
|
|
|
|
|
$(document).on('click','.input-group.date .input-group-addon', function() {
|
|
|
|
datepickerfocus = true;
|
|
|
|
// Re-init datepicker config before displaying
|
2015-03-05 14:53:42 +01:00
|
|
|
$(this).parent().datepicker(init_datepicker());
|
2014-10-21 01:31:26 +02:00
|
|
|
$(this).parent().datepicker('show');
|
|
|
|
|
|
|
|
// Trick to refresh calendar
|
|
|
|
$('.datepicker-days .prev').trigger('click');
|
|
|
|
$('.datepicker-days .next').trigger('click');
|
|
|
|
// .active must be clicable in order to unfill the form
|
|
|
|
$('.datepicker-days .active').removeClass('disabled');
|
2014-09-04 17:52:18 +02:00
|
|
|
});
|
|
|
|
|
2014-10-21 01:31:26 +02:00
|
|
|
$(document).on('focus','.input-group.date input', function() {
|
|
|
|
if(datepickerfocus) {
|
2015-03-05 14:53:42 +01:00
|
|
|
$(this).parent('.input-group.date').datepicker(init_datepicker());
|
2014-10-21 01:31:26 +02:00
|
|
|
$(this).parent('.input-group.date').datepicker('show');
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2014-09-04 17:52:18 +02:00
|
|
|
/**
|
|
|
|
* adminstuds.php
|
|
|
|
**/
|
|
|
|
|
|
|
|
$('#title-form .btn-edit').on('click', function() {
|
2014-11-06 15:51:39 +01:00
|
|
|
$('#title-form h3').hide();
|
2014-09-04 17:52:18 +02:00
|
|
|
$('.js-title').removeClass("hidden");
|
|
|
|
$('.js-title input').focus();
|
|
|
|
return false;
|
|
|
|
});
|
|
|
|
|
|
|
|
$('#title-form .btn-cancel').on('click', function() {
|
2014-11-06 15:51:39 +01:00
|
|
|
$('#title-form h3').show();
|
2014-09-04 17:52:18 +02:00
|
|
|
$('#title-form .js-title').addClass("hidden");
|
|
|
|
$('#title-form .btn-edit').focus();
|
|
|
|
return false;
|
|
|
|
});
|
|
|
|
|
2015-01-08 22:03:44 +01:00
|
|
|
$('#name-form .btn-edit').on('click', function() {
|
|
|
|
$('#name-form p').hide();
|
|
|
|
$('.js-name').removeClass("hidden");
|
|
|
|
$('.js-name input').focus();
|
|
|
|
return false;
|
|
|
|
});
|
|
|
|
|
|
|
|
$('#name-form .btn-cancel').on('click', function() {
|
|
|
|
$('#name-form p').show();
|
|
|
|
$('#name-form .js-name').addClass("hidden");
|
|
|
|
$('#name-form .btn-edit').focus();
|
|
|
|
return false;
|
|
|
|
});
|
|
|
|
|
2014-09-04 17:52:18 +02:00
|
|
|
$('#email-form .btn-edit').on('click', function() {
|
|
|
|
$('#email-form p').hide();
|
|
|
|
$('#email-form .js-email').removeClass("hidden");
|
|
|
|
$('.js-email input').focus();
|
|
|
|
return false;
|
|
|
|
});
|
|
|
|
|
|
|
|
$('#email-form .btn-cancel').on('click', function() {
|
|
|
|
$('#email-form p').show();
|
|
|
|
$('#email-form .js-email').addClass("hidden");
|
|
|
|
$('#email-form .btn-edit').focus();
|
|
|
|
return false;
|
|
|
|
});
|
|
|
|
|
|
|
|
$('#description-form .btn-edit').on('click', function() {
|
|
|
|
$('#description-form .well').hide();
|
|
|
|
$('#description-form .js-desc').removeClass("hidden");
|
|
|
|
$('.js-desc textarea').focus();
|
|
|
|
return false;
|
|
|
|
});
|
|
|
|
|
|
|
|
$('#description-form .btn-cancel').on('click', function() {
|
|
|
|
$('#description-form .well').show();
|
|
|
|
$('#description-form .js-desc').addClass("hidden");
|
|
|
|
$('.js-desc .btn-edit').focus();
|
|
|
|
return false;
|
|
|
|
});
|
|
|
|
|
2014-10-21 01:31:26 +02:00
|
|
|
$('#poll-rules-form .btn-edit').on('click', function() {
|
|
|
|
$('#poll-rules-form p').hide();
|
|
|
|
$('#poll-rules-form .js-poll-rules').removeClass("hidden");
|
|
|
|
$('.js-poll-rules select').focus();
|
|
|
|
return false;
|
|
|
|
});
|
|
|
|
|
|
|
|
$('#poll-rules-form .btn-cancel').on('click', function() {
|
|
|
|
$('#poll-rules-form p').show();
|
|
|
|
$('#poll-rules-form .js-poll-rules').addClass("hidden");
|
|
|
|
$('.js-poll-rules .btn-edit').focus();
|
|
|
|
return false;
|
|
|
|
});
|
|
|
|
|
2015-01-08 00:27:40 +01:00
|
|
|
$('#expiration-form .btn-edit').on('click', function() {
|
|
|
|
$('#expiration-form p').hide();
|
|
|
|
$('.js-expiration').removeClass("hidden");
|
|
|
|
$('.js-expiration input').focus();
|
|
|
|
return false;
|
|
|
|
});
|
|
|
|
|
|
|
|
$('#expiration-form .btn-cancel').on('click', function() {
|
|
|
|
$('#expiration-form p').show();
|
|
|
|
$('#expiration-form .js-expiration').addClass("hidden");
|
|
|
|
$('#expiration-form .btn-edit').focus();
|
|
|
|
return false;
|
|
|
|
});
|
|
|
|
|
2014-10-21 01:31:26 +02:00
|
|
|
// Horizontal scroll buttons
|
|
|
|
if($('.results').width() > $('.container').width()) {
|
|
|
|
$('.scroll-buttons').removeClass('hidden');
|
|
|
|
}
|
|
|
|
|
|
|
|
var $scroll_page = 1;
|
|
|
|
var $scroll_scale = $('#tableContainer').width()*2/3;
|
|
|
|
|
|
|
|
$('.scroll-left').addClass('disabled');
|
|
|
|
|
|
|
|
$('.scroll-left').click(function(){
|
|
|
|
$('.scroll-right').removeClass('disabled');
|
|
|
|
$( "#tableContainer" ).animate({
|
|
|
|
scrollLeft: $scroll_scale*($scroll_page-1)
|
|
|
|
}, 1000);
|
|
|
|
if($scroll_page == 1) {
|
|
|
|
$(this).addClass('disabled');
|
|
|
|
} else {
|
|
|
|
$scroll_page = $scroll_page-1;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
});
|
|
|
|
$('.scroll-right').click(function(){
|
|
|
|
$('.scroll-left').removeClass('disabled');
|
|
|
|
$( "#tableContainer" ).animate({
|
|
|
|
scrollLeft: $scroll_scale*($scroll_page)
|
|
|
|
}, 1000);
|
|
|
|
|
|
|
|
if($scroll_scale*($scroll_page+1) > $( ".results" ).width()) {
|
|
|
|
$(this).addClass('disabled');
|
|
|
|
} else {
|
|
|
|
$scroll_page++;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
});
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
// Vote form moving to the top or to the bottom
|
|
|
|
$(window).scroll(function() {
|
|
|
|
var $table_offset = $('.results thead').offset();
|
2014-11-18 18:38:00 +01:00
|
|
|
if(($table_offset == undefined || $(window).scrollTop() > $table_offset.top+150) && ($('table.results').height()-150 > $(window).height())) {
|
2014-10-21 01:31:26 +02:00
|
|
|
$('#addition').before($('#vote-form'));
|
|
|
|
$('#tableContainer').after($('.scroll-buttons'));
|
2014-11-14 17:35:22 +01:00
|
|
|
} else {
|
|
|
|
$('.results tbody').prepend($('#vote-form'));
|
|
|
|
$('#tableContainer').before($('.scroll-buttons'));
|
2014-10-21 01:31:26 +02:00
|
|
|
}
|
2014-09-04 17:52:18 +02:00
|
|
|
});
|