function eplGalleryResizePlayer(ratio) {
var iframes = jQuery('.pswp__container').find('iframe');
var width = 0;
ratio = ratio || 9 / 16;
if( iframes.length > 0 ) {
jQuery('.pswp__container').find('.pswp__item').each( function() {
if( null != jQuery(this).find('.pswp__img').width() ) {
width = jQuery(this).find('.pswp__img').width();
}
});
iframes.each(function () {
var current = jQuery(this);
var height = width * ratio;
console.log([width,height]);
current.width(width).height(height);
});
}
}
function eplgallery_init_opts(index = 0) {
window.eplGallery = document.querySelectorAll('.pswp')[0];
window.eplGalleryItems = [{"src":"https:\/\/domainpropertygroup.com.au\/wp-content\/uploads\/2026\/02\/177034951136591801-rsd.jpg","w":1920,"h":1280,"thumb":"https:\/\/domainpropertygroup.com.au\/wp-content\/uploads\/2026\/02\/177034951136591801-rsd.jpg","title":"","type":"image"},{"src":"https:\/\/domainpropertygroup.com.au\/wp-content\/uploads\/2026\/02\/177034951440793722-rsd.jpg","w":1920,"h":1280,"thumb":"https:\/\/domainpropertygroup.com.au\/wp-content\/uploads\/2026\/02\/177034951440793722-rsd.jpg","title":"","type":"image"},{"src":"https:\/\/domainpropertygroup.com.au\/wp-content\/uploads\/2026\/02\/177034951421034888-rsd.jpg","w":1920,"h":1280,"thumb":"https:\/\/domainpropertygroup.com.au\/wp-content\/uploads\/2026\/02\/177034951421034888-rsd.jpg","title":"","type":"image"},{"src":"https:\/\/domainpropertygroup.com.au\/wp-content\/uploads\/2026\/02\/177034951697983272-rsd.jpg","w":1920,"h":1280,"thumb":"https:\/\/domainpropertygroup.com.au\/wp-content\/uploads\/2026\/02\/177034951697983272-rsd.jpg","title":"","type":"image"},{"src":"https:\/\/domainpropertygroup.com.au\/wp-content\/uploads\/2026\/02\/177034951313329311-rsd.jpg","w":1920,"h":1280,"thumb":"https:\/\/domainpropertygroup.com.au\/wp-content\/uploads\/2026\/02\/177034951313329311-rsd.jpg","title":"","type":"image"},{"src":"https:\/\/domainpropertygroup.com.au\/wp-content\/uploads\/2026\/02\/177034951322400136-rsd.jpg","w":1920,"h":1280,"thumb":"https:\/\/domainpropertygroup.com.au\/wp-content\/uploads\/2026\/02\/177034951322400136-rsd.jpg","title":"","type":"image"},{"src":"https:\/\/domainpropertygroup.com.au\/wp-content\/uploads\/2026\/02\/177034951404001585-rsd.jpg","w":1920,"h":1280,"thumb":"https:\/\/domainpropertygroup.com.au\/wp-content\/uploads\/2026\/02\/177034951404001585-rsd.jpg","title":"","type":"image"},{"src":"https:\/\/domainpropertygroup.com.au\/wp-content\/uploads\/2026\/02\/177034951461300472-rsd.jpg","w":1920,"h":1280,"thumb":"https:\/\/domainpropertygroup.com.au\/wp-content\/uploads\/2026\/02\/177034951461300472-rsd.jpg","title":"","type":"image"},{"src":"https:\/\/domainpropertygroup.com.au\/wp-content\/uploads\/2026\/02\/177034951478802178-rsd.jpg","w":1920,"h":1280,"thumb":"https:\/\/domainpropertygroup.com.au\/wp-content\/uploads\/2026\/02\/177034951478802178-rsd.jpg","title":"","type":"image"},{"src":"https:\/\/domainpropertygroup.com.au\/wp-content\/uploads\/2026\/02\/177034951769806153-rsd.jpg","w":1920,"h":1280,"thumb":"https:\/\/domainpropertygroup.com.au\/wp-content\/uploads\/2026\/02\/177034951769806153-rsd.jpg","title":"","type":"image"},{"src":"https:\/\/domainpropertygroup.com.au\/wp-content\/uploads\/2026\/02\/177034951847441555-rsd.jpg","w":1920,"h":1280,"thumb":"https:\/\/domainpropertygroup.com.au\/wp-content\/uploads\/2026\/02\/177034951847441555-rsd.jpg","title":"","type":"image"}];
window.eplGalleryOptions = {
// optionName: 'option value'
// for example:
index: index // start at first slide
};
window.eplGallery = new PhotoSwipe(eplGallery, PhotoSwipeUI_Default, eplGalleryItems, eplGalleryOptions);
eplGallery.init();
eplGallery.listen('afterInit', function () {
eplGalleryResizePlayer(9/16);
});
eplGallery.listen('beforeChange', function () {
var currItem = jQuery(eplGallery.currItem.container);
jQuery('.pswp__video').removeClass('active');
var currItemIframe = currItem.find('.pswp__video').addClass('active');
jQuery('.pswp__video').each(function () {
if (!jQuery(this).hasClass('active')) {
jQuery(this).find('iframe').each(function() {
var src = jQuery(this).attr('src');
src = src.replace(/[\?&]autoplay=1/g, '');
jQuery(this).attr('src', src);
});
}
});
eplGalleryResizePlayer(9/16);
});
eplGallery.listen('close', function () {
jQuery('.pswp__video').each(function () {
jQuery(this).find('iframe').each(function() {
var src = jQuery(this).attr('src');
src = src.replace(/[\?&]autoplay=1/g, '');
src = src + '?autoplay=0';
jQuery(this).attr('src', src );
console.log(src);
});
});
console.log('closed');
});
}
function trigger_autoplay_event() {
jQuery(document).on('click', '.epl-gallery-overlay', function(e) {
let slide = jQuery(this).closest('.pswp__zoom-wrap').find('.pswp__video');
let iframe = slide.find("iframe")[0];
let src = iframe.src;
if (src.indexOf('autoplay=') !== -1) {
src = src.replace(/autoplay=\d/g, function(match) {
return match === 'autoplay=0' ? 'autoplay=1' : 'autoplay=0';
});
} else {
src += (src.includes('?') ? '&' : '?') + 'autoplay=1';
}
iframe.src = src;
console.log('trigerred video');
});
}
jQuery('document').ready( function() {
trigger_autoplay_event();
eplGalleryResizePlayer(9 / 16);
jQuery(window).bind("load", handle_resize);
jQuery(window).bind("resize", handle_resize);
jQuery(window).bind("orientationchange", handle_resize);
function handle_resize() {
eplGalleryResizePlayer(9 / 16);
console.log( 'resized');
}
});
310 Blackwall Road,
Blackwall
NSW
2256
Deprecated: preg_split(): Passing null to parameter #3 ($limit) of type int is deprecated in /home/domainpropertygr/public_html/wp-content/themes/central-coast-websites-child/easypropertylistings/content-listing-single-6-2col-option-2.php on line 108
This beautifully refreshed home offers comfort, space, and modern updates throughout, perfect for tenants seeking a low-maintenance lifestyle in a well-presented property.
Featuring two generous bedrooms with built-ins, plus a study or half bedroom, the layout is flexible and ideal for working from home or extra storage. A light-filled sunroom adds another versatile living space, perfect for relaxing year-round.
The home has been recently renovated, boasting a near-new, tasteful kitchen with styled finishes, a brand new bathroom, brand new carpet in the bedrooms and common ...
Read More
This beautifully refreshed home offers comfort, space, and modern updates throughout, perfect for tenants seeking a low-maintenance lifestyle in a well-presented property.
Featuring two generous bedrooms with built-ins, plus a study or half bedroom, the layout is flexible and ideal for working from home or extra storage. A light-filled sunroom adds another versatile living space, perfect for relaxing year-round.
The home has been recently renovated, boasting a near-new, tasteful kitchen with styled finishes, a brand new bathroom, brand new carpet in the bedrooms and common areas, and has been freshly painted throughout for a clean, contemporary feel. Featuring a brand new split-system air-conditioner that will keep you comfortable year round. Step outside and enjoy the new deck overlooking a large yard, ideal for outdoor entertaining or quiet mornings.
Just metres from a coastal walking track along the beautiful Brisbane Water, and a short drive to local shops, parks and schools, this property is an absolute must for anyone.
Property features include:
2 bedrooms plus study / half bedroom
Sunroom with plenty of natural light
Near-new modern kitchen
Brand new bathroom
Freshly painted throughout
New deck for outdoor living
Recently renovated and well maintained
A great opportunity to secure a stylish and updated home - inspection is a must.
Read Less