+ $('.book-list-show-index').hide('fast');
+ var books_ul = $(this).parent().next().children().first();
+ if(books_ul.first().is(':hidden')){
+ books_ul.toggle('fast');
+ }
+ return false;
+ });
+
+ $('.hoverclick').click(function() {$(this).closest('.hoverget').toggleClass('hover');});
+ $('.hoverclick').keydown(function(event){
+ var keyCode = (event.keyCode ? event.keyCode : event.which);
+ if (keyCode == 13) {
+ $(this).trigger('click');
+ }
+ });
+
+ $(function(){
+ $("#search").search();
+ });
+
+ $('body').on('click', '.simple-toggler' , function(ev) {
+ ev.preventDefault();
+ var scope = $(this).closest('.simple-toggler-scope');
+ scope.find('.simple-hidden-box').each(function() {
+ var $this = $(this);
+ if ($this.is(':hidden')) {
+ $this.show();
+ } else {
+ $this.hide();
+ }
+ });
+ });
+
+
+ $('.tabbed-filter').each(function() {
+ var tf = this;
+ $('.tab').click(function() {
+ if ($(this).hasClass('active')) {
+ $(this).removeClass('active');
+ $('#' + $(this).attr('data-id')).hide();
+ }
+ else {
+ var $active = $('.active', tf);
+ $active.removeClass('active');
+ $('#' + $active.attr('data-id')).hide();
+ $(this).addClass('active');
+ $('#' + $(this).attr('data-id')).show();
+ }
+ });
+ });
+
+
+ $('.plain-list-paged').each(function() {
+ // should change on resize?
+ var $plc = $(this);
+ var $pl = $('.plain-list', this);
+
+ var $items = $('p', $pl);
+
+ if ($items.length > 40) {
+ $items.hide();
+ var prev = [0, 0];
+
+ $('.pager', $plc).paging($items.length, {
+ format: '[< ncnnn >]', // define how the navigation should look like and in which order onFormat() get's called
+ perpage: 40,
+ lapping: 0, // don't overlap pages for the moment
+ page: 1, // start at page, can also be "null" or negative
+ onSelect: function (page) {
+ var data = this.slice;
+ $items.slice(prev[0], prev[1]).hide();
+ $items.slice(data[0], data[1]).show();
+ prev = data;
+ },
+ onFormat: function (type) {
+ switch (type) {
+ case 'block': // n and c
+ return ' <li><a href="#"' + (this.value == this.page ? ' class="current"' : '') + '>' +
+ this.value + '</a></li>';
+ case 'next': // >
+ return '<li><a href="#">›</a></li>';
+ case 'prev': // <
+ return '<li><a href="#">‹</a></li>';
+ case 'first': // [
+ return '<li><a href="#">«</a></li>';
+ case 'last': // ]
+ return '<li><a href="#">»</a></li>';
+ }
+ }
+ });
+ }
+ });
+
+ /* global tlite */
+ tlite(function (el) {
+ return $(el).hasClass('tlite-tooltip');
+ });
+
+ /* more/less switch from https://codepen.io/JoshBlackwood/pen/pEwHe */
+ // Hide the extra content initially, using JS so that if JS is disabled, no problemo:
+ $('.read-more-content').addClass('hide');
+ $('.read-more-show, .read-more-hide').removeClass('hide');
+
+ // Set up the toggle effect:
+ $('.read-more-show').on('click', function(e) {
+ $(this).next('.read-more-content').removeClass('hide');
+ $(this).addClass('hide');
+ e.preventDefault();
+ });
+
+ // Changes contributed by @diego-rzg
+ $('.read-more-hide').on('click', function(e) {
+ var p = $(this).parent('.read-more-content');
+ p.addClass('hide');
+ p.prev('.read-more-show').removeClass('hide'); // Hide only the preceding "Read More"
+ e.preventDefault();
+ });
+
+
+ function update_info() {
+ var amount = parseInt($("#id_amount").val());
+ var monthly = $("#id_monthly").val() == 'True';
+ if (monthly) slug = "monthly";
+ else if (amount >= parseInt($("#plan-single").attr('data-min-for-year'))) slug = 'single-year';
+ else slug = 'single';
+
+ var chunk = $('.club-form-info .chunk-' + slug);
+ if (chunk.css('display') == 'none') {
+ $('.chunk-alt').css('height', $('.chunk-alt').height());
+ $('.chunk-alt .chunk').css('position', 'absolute');
+
+ $('.club-form-info .chunk').fadeOut();
+ $('.club-form-info .chunk.chunk-' + slug).fadeIn(function() {
+ $('.chunk-alt .chunk').css('position', 'static');
+ $('.chunk-alt').css('height', 'auto');
+ });
+ $('.chunk-alt').animate({height: chunk.height()}, 100);
+ }
+ }
+
+ $("#id_amount").val($("#plan-monthly").attr('data-amount'));
+
+ $(".button.kwota").click(function() {
+ var plan = $(this).closest('.plan');
+ $('.kwota', plan).removeClass('active')
+ $('.inna', plan).removeClass('active')
+ $(this).addClass('active');
+
+ var amount = $(this).text();
+ plan.attr("data-amount", amount);
+ $("#id_amount").val(amount);
+
+ update_info();
+ return false;
+ });
+
+ $(".plan-toggle").click(function() {
+ $(".plan-toggle").removeClass('active');
+ $(this).addClass('active')
+ $(".plan").hide();
+ var plan = $("#" + $(this).attr('data-plan'));
+ plan.show();
+ $("#id_amount").val(plan.attr('data-amount'));
+ $("#id_monthly").val(plan.attr('data-monthly'));
+
+ update_info();