Cristobal M
4/25/24, 4:35:32 PM EDT
Noticed that sometimes, with certain number or assets per row, and depending on the size of the asset, the face-box indicator is odd of the real face. This is because we do calculations when we render the image, but later the masonry JS scales down-up the image and the face-box is obviously not re-calculated.
Cristobal M
4/25/24, 4:37:13 PM EDT
Easisest way I can think is: I can store the original box location on the DOM element, if the image got resized, I can recalculate with JS.
Christopher B
4/25/24, 4:38:22 PM EDT
I just checked in a bix change to how Javascript is rendered. Lets keep an eye out for issues please
Ian M
4/26/24, 12:05:07 PM EDT
Seeing some really strange behaviour in API/JSON handling, /'s getting added somehow and force downloads happening with empty files
Ian M
4/26/24, 12:05:45 PM EDT
Looks like changes in entermedia-core - trying to understand the change
Christopher B
4/26/24, 12:06:33 PM EDT
Yeah I saw that today as well. I will try and figure it out here shortly.
Ian M
4/26/24, 12:07:12 PM EDT
if(alternative != null)
{
if(wasfolder) {
page = getPageManager().getPage( requestedPath + "/index." + alternative,false);
} else {
page = getPageManager().getPage( requestedPath + "." + alternative,false);
}
}
Christopher B
4/26/24, 12:43:59 PM EDT
FYI: I am trying to support URL's like /test that would internally render /test/index.html but not redirect
Ian M
4/26/24, 1:10:37 PM EDT
I have a bunch in a project here - but I can reconstruct it pretty easily
Ian M
4/26/24, 1:15:50 PM EDT
The url is something like /test/123 and there is a _site.xconf with an alternative extension of json, it's virtual =true and there is a layout.json specified in test - like /test/layout.json
Ian M
4/26/24, 1:16:39 PM EDT
It stopped using the layout.json and started redirecting to /test/123/ instead