|
|
|
@ -13,8 +13,8 @@ $(document).ready(function() {
|
|
|
|
|
populatePieces('secondary');
|
|
|
|
|
populatePublications();
|
|
|
|
|
populateReleases();
|
|
|
|
|
populatePerformances(2020, 'composer', true);
|
|
|
|
|
populateTalks(2020, true);
|
|
|
|
|
populatePerformances(2021, 'composer', true);
|
|
|
|
|
populateTalks(2021, true);
|
|
|
|
|
populateAbout();
|
|
|
|
|
|
|
|
|
|
populateGallerySelector();
|
|
|
|
@ -99,7 +99,7 @@ function resetDivHeights(){
|
|
|
|
|
//$('#pieces').height($('#releases').height());
|
|
|
|
|
//$('#releases').height($('#writings').height());
|
|
|
|
|
|
|
|
|
|
$('#pieces').css('height', '1850px');
|
|
|
|
|
$('#pieces').css('height', '2400px');
|
|
|
|
|
//if($('#writings').height() >= $('#releases').height()){
|
|
|
|
|
// $('#pieces').height($('#writings').height());
|
|
|
|
|
//} else {
|
|
|
|
@ -445,7 +445,7 @@ function populateReleases() {
|
|
|
|
|
releaseli = $('<li id=release_li_item'+index+'>');
|
|
|
|
|
$('ul#releaseslist').addClass('content-list').prepend(releaseli);
|
|
|
|
|
|
|
|
|
|
var img, thumb, head;
|
|
|
|
|
var img, thumb, head, title, caption, cartButton, infoButton, cartRef, infoRef;
|
|
|
|
|
img = data.img;
|
|
|
|
|
thumb = data.thumb;
|
|
|
|
|
if (typeof thumb === 'undefined' ) {
|
|
|
|
@ -457,9 +457,37 @@ function populateReleases() {
|
|
|
|
|
var imgsrc = BASE_URL + "/unboundedpress/album_art.files/" + img._id['$oid'] +"/binary";
|
|
|
|
|
var thumbsrc = BASE_URL + "/unboundedpress/album_art.files/" + thumb._id['$oid'] +"/binary";
|
|
|
|
|
|
|
|
|
|
title = $('<div>').addClass('caption').append(data.title);
|
|
|
|
|
title.css('text-align', 'center');
|
|
|
|
|
caption = $('<div>').addClass('caption')
|
|
|
|
|
caption.css('text-align', 'center');
|
|
|
|
|
caption.css('padding-bottom', '25px');
|
|
|
|
|
|
|
|
|
|
if(data.discogs_id) {
|
|
|
|
|
infoRef = 'https://www.discogs.com/release/' + data.discogs_id;
|
|
|
|
|
infoButton = $('<button id=release_info_button_'+index+" data-iframe='true' data-src='"+ infoRef +"'>")
|
|
|
|
|
.attr({title: "discogs info"}).addClass('info_icon');
|
|
|
|
|
|
|
|
|
|
infoButton.click(function() {
|
|
|
|
|
window.open(infoRef);
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if(data.buy_link) {
|
|
|
|
|
cartRef = data.buy_link;
|
|
|
|
|
cartButton = $('<button id=release_cart_button_'+index+" data-iframe='true' data-src='"+ cartRef +"'>")
|
|
|
|
|
.attr({title: "buy"}).addClass('cart_icon');
|
|
|
|
|
|
|
|
|
|
cartButton.click(function() {
|
|
|
|
|
window.open(cartRef);
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
caption.append([infoButton, cartButton]);
|
|
|
|
|
head = $('<h4>').append($("<a href='"+imgsrc+"' data-download-url='/album_art/"+data.album_art+"'>")
|
|
|
|
|
.append($('<img>').attr({src: thumbsrc}).css('width','100%')));
|
|
|
|
|
releaseli.append(head);
|
|
|
|
|
releaseli.append(title).append(head).append(caption);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
objCount++;
|
|
|
|
@ -606,7 +634,7 @@ function populatePerformances(year, eventType, loadUpcoming) {
|
|
|
|
|
//console.log(upcomingCount);
|
|
|
|
|
if (upcomingLoadedCount==2) {
|
|
|
|
|
|
|
|
|
|
if(upcomingCount == 0 && year == 2020){
|
|
|
|
|
if(upcomingCount == 0 && year == 2021){
|
|
|
|
|
|
|
|
|
|
$('#upcoming').css('visibility', 'hidden')
|
|
|
|
|
} else {
|
|
|
|
|